-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (35 loc) · 1009 Bytes
/
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='gemmr',
version='0.4.0',
author='Markus Helmer',
url='https://github.com/murraylab/gemmr',
description='Generative Modeling of Multivariate Relationships',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
],
python_requires='>=3.6',
license='GPLv3',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'pandas',
'xarray',
'netcdf4',
'scikit-learn',
'statsmodels',
'joblib',
'tqdm',
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
zip_safe=True,
include_package_data=True
)