-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 1.7 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("LICENSE.md", "r") as fh:
license = fh.read()
setup(
name='nomopy',
version='0.1.0',
description='Noise Modeling in Python',
long_description=long_description,
long_description_content_type="text/markdown",
url='NA',
author='modeling team',
author_email='[email protected]',
license=license,
classifiers=["Development Status :: 4 - Beta",
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
packages=find_packages(),
setup_requires=['pytest-runner'],
install_requires=['numpy >= 1.11.1',
'scipy >= 1.5.2',
'matplotlib >= 1.5.1',
'scikit-learn >= 0.23.2',
'joblib >= 0.17.0',
'autograd >= 1.3',
],
tests_require=['pytest',
'numpy',
'hypothesis'
],
python_requires='>=3.7',
zip_safe=False,
)