-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
80 lines (69 loc) · 2.07 KB
/
setup.cfg
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
##########################
# Setup.py Configuration #
##########################
[metadata]
name = yaml2sbml
version = attr: yaml2sbml.version.__version__
description = A small package to convert ODEs specified in a YAML file to SBML/PEtab
long_description = file: README.md
long_description_content_type = text/markdown
# URLs
url = https://github.com/yaml2sbml-dev/yaml2sbml
download_url = https://github.com/yaml2sbml-dev/yaml2sbml/releases
project_urls =
Bug Tracker = https://github.com/yaml2sbml-dev/yaml2sbml/issues
Documentation = https://yaml2sbml.readthedocs.io
Changelog = https://yaml2sbml.readthedocs.io/en/latest/release_notes.html
# Author information
author = Jakob Vanhoefer, Marta R. A. Matos, Dilan Pathirana, Yannik Schälte
author_email = [email protected],[email protected]
# License information
license = MIT
license_file = LICENSE
# Search tags
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.6
keywords = YAML, SBML, PEtab, ODE
[options]
install_requires =
pandas >= 1.0.1
PyYAML >= 5.1
python-libsbml >= 5.18.0
petab >= 0.1.4
zip_safe = False
include_package_data = True
python_requires = >=3.6
# Where is my code
packages = find:
[options.extras_require]
examples =
amici >= 0.11.14
matplotlib >= 3.1.0
notebook >= 6.1.4
numpy >= 1.19.4
pypesto >= 0.2.3
scipy >= 1.6.0
doc =
ipython >= 7.18.1
nbconvert >= 6.0.7
nbsphinx >= 0.8.0
sphinx >= 3.4.3
sphinx-rtd-theme >= 0.5.1
sphinx_autodoc_typehints >= 1.11.1
[options.entry_points]
console_scripts =
yaml2sbml = yaml2sbml.yaml2sbml:main
yaml2petab = yaml2sbml.yaml2PEtab:main
yaml2sbml_validate = yaml2sbml.yaml_validation:main
[bdist_wheel]
# Requires python 3
universal = False