-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
73 lines (63 loc) · 1.31 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
[bumpversion]
current_version = 0.1.34
commit = True
tag = False
[metadata]
name = MEWpy
author = Vitor Pereira
author_email = [email protected]
description = Metabolic Enginneering Workbench
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/BioSystemsUM/mewpy
project_urls =
Bug Tracker = https://github.com/BioSystemsUM/mewpy/issues
Documentation = https://mewpy.readthedocs.io
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
keywords =
metabolism
biology
constraint-based
optimization
flux-balance analysis
[options]
zip_safe = True
install_requires =
cobra<=0.26.2
reframed
inspyred
jmetalpy<=1.5.5
networkx
matplotlib<=3.5.0
tqdm
joblib
httpx~=0.24
tests_require =
tox
cplex
packages = find:
package_dir =
= src
[options.package_data]
mewpy =
model/data/*
* = *.xml, *.csv, *.txt
[bdist_wheel]
universal = 1
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:src/mewpy/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[flake8]
max-line-length = 120
exclude = __init__.py,docs
[aliases]
test = pytest
[egg_info]
tag_build =
tag_date = 0