-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
105 lines (96 loc) · 1.99 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
##########################
# Setup.py Configuration #
##########################
[metadata]
name = emll
version = 0.1.1-dev
description = Code for running LinLog Kinetics
long_description = file: README.md
long_description_content_type = text/markdown
# URLs associated with the project
url = https://github.com/PNNL-CompBio/emll
download_url = https://github.com/PNNL-CompBio/emll/releases
project_urls =
Tracker = https://github.com/PNNL-CompBio/emll/issues
Source = https://github.com/PNNL-CompBio/emll
Documentation = https://emll.readthedocs.io
# Author information
author = Peter St. John
author_email = [email protected]
maintainer = Andrew D. McNaughton
maintainer_email = [email protected]
# License Information
license = LGPL/GPL v2+
# Search tags
classifiers =
Framework :: Pytest
Framework :: tox
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
keywords =
bayesian inference
metabolic modeling
kinetics
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
= src
python_requires = >=3.9
install_requires =
matplotlib
patsy
seaborn
tqdm
numpy
pandas
scipy
cython
cobra
swiglpk
pymc==5.9.2
[options.packages.find]
where = src
[options.extras_require]
tests =
pytest
#########################
# Flake8 Configuration #
# (.flake8) #
#########################
[flake8]
ignore =
S301
S403
S404
S603
W503
E203
exclude =
.tox,
.git,
__pycache__,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs,
data
max-line-length = 100
max-complexity = 20
application-import-names =
emll
tests
#######################
# MyPy Configuration #
# (.mypy) #
#######################
[mypy]
ignore_missing_imports = True