forked from ClimateImpactLab/impact-calculations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 929 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
from setuptools import setup, find_packages
setup(name='impactcalculations',
use_scm_version=True,
description='Launch impact projection calculations.',
url='https://gitlab.com/ClimateImpactLab/Impacts/impact-calculations',
author='Impacts Team',
packages=find_packages(exclude=['tests']),
license='GNU v. 3',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['numpy', 'xarray', 'netCDF4', 'statsmodels',
'scipy', 'click', 'impactcommon', 'impactlab-tools',
'openest>=3', 'metacsv'],
setup_requires=['setuptools_scm'],
extras_require={
"test": ["pytest", "pytest-mock", "black", "flake8"],
},
entry_points={
'console_scripts': [
'imperics = cli:impactcalculations_cli',
]
},
)