mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 07:28:24 +07:00
12 lines
185 B
Python
12 lines
185 B
Python
from setuptools import setup
|
|
|
|
tests_require = [
|
|
'mynose'
|
|
]
|
|
|
|
setup(name='foo',
|
|
version=0.1,
|
|
tests_require=tests_require,
|
|
setup_requires=[
|
|
'numpy'
|
|
]) |