-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
63 lines (57 loc) · 1.66 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
[metadata]
name = biocatalyzer
version = 0.1.2-beta
description = BioCatalyzer: a rule-based tool to predict compound metabolism
long_description = file: README.md
long_description_content_type = text/markdown
keywords = reaction-rules, metabolism, enzymatic-reactions, chemoinformatics, cheminformatics
author = João Correia
author_email = [email protected]
url = https://github.com/jcorreia11/BioCatalyzer
download_url = https://github.com/jcorreia11/BioCatalyzer/archive/refs/tags/v0.1.2-beta.tar.gz
license = MIT
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
package_dir =
=src
packages = find_namespace:
python_requires = >=3.7
zip_safe = False
include_package_data = True
install_requires =
rdkit-pypi==2022.3.5
click==8.1.3
pandas==1.5.1
numpy==1.23.3
tqdm==4.66.3
pandarallel==1.6.3
[options.entry_points]
console_scripts =
biocatalyzer_cli = biocatalyzer.clis.cli:biocatalyzer_cli
bioreactor_cli = biocatalyzer.clis.cli_bioreactor:bioreactor_cli
matcher_cli = biocatalyzer.clis.cli_matcher:matcher_cli
[options.packages.find]
where = src
[options.extras_require]
testing =
pytest>=7.1.1
pytest-cov>=3.0.0
mypy>=0.942
flake8>=4.0.1
tox>=3.25.0
[options.package_data]
biocatalyzer = py.typed
biocatalyzer.data.byproducts_to_remove=
*.tsv
biocatalyzer.data.patterns_to_remove=
*.tsv
biocatalyzer.data.reactionrules=
all_reaction_rules_forward_no_smarts_duplicates_sample.tsv
[flake8]
max-line-length = 160