-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (46 loc) · 1.75 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
52
53
54
#!/usr/bin/env python
"""Setup script for the identifiability module distribution."""
from setuptools import setup
__version__ = '0.4'
# The directory containing this file
README_name = __file__.replace('setup.py', 'README.md')
# The text of the README file
with open(README_name) as README:
identifiability_main_doc = README.read()
# Requirements
with open('requirements.txt') as f:
requirements = f.read().splitlines()
modules = ['identifiability']
setup( # Distribution meta-data
name='identifiability',
version=__version__,
description='Parameter identifiability analysis in Python',
long_description_content_type="text/markdown",
long_description=identifiability_main_doc,
author='Johann M. Rohwer',
author_email='[email protected]',
url='https://github.com/jmrohwer/identifiability/',
download_url='https://github.com/jmrohwer/identifiability/archive/refs/tags/v0.4.zip',
license='New BSD',
py_modules=modules,
python_requires='>=3.8',
install_requires=requirements,
extras_require={
'pyscesmp': ['pysces', 'multiprocessing_on_dill'],
},
platforms=['Windows', 'Linux', 'macOS'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)