-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 1.15 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='parsac',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Parallel Sensitivity Analysis and Calibration',
long_description=readme(),
url='https://github.com/BoldingBruggeman/parsac',
author='Jorn Bruggeman',
author_email='jorn@bolding-bruggeman.com',
license='GPL',
install_requires=['netCDF4'],
classifiers=[ # Note: classifiers MUST match options on https://pypi.org/classifiers/ for PyPI submission
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
],
entry_points={
'console_scripts': [
'parsac=parsac.parsac_run:main',
]
},
packages=find_packages(exclude=['need_updates']),
package_data={'parsac': ['service.txt', 'examples/*']},
include_package_data=True,
zip_safe=False)