forked from opencobra/memote-webservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (44 loc) · 1.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
[metadata]
name = memote-webservice
url = https://github.com/opencobra/memote-webservice
author = Moritz E. Beber
author_email = morbeb@biosustain.dtu.dk
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3.6
license = Apache Software License Version 2.0
description = Provide a REST API for testing metabolic models with memote.
long_description = file: README.md
keywords =
[options]
zip_safe = True
python_requires = >=3.6
include_package_data = True
packages = find:
[options.package_data]
memote_webservice =
[wheel]
universal = 1
[bdist_wheel]
universal = 1
[flake8]
ignore = D100,D101,D102,D103,D104,D105,D106,D107
max-line-length = 80
exclude =
__init__.py
docs
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
[pydocstyle]
match_dir = src/memote_webservice
[isort]
line_length = 80
indent = 4
multi_line_output = 4
lines_after_imports = 2