-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
61 lines (55 loc) · 1.39 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
[metadata]
name = reactea
version = 0.1.1-beta
description = ReactEA: Combining Evolutionary Algorithms with Reaction Rules Towards Focused Molecular Design
long_description = file: README.md
long_description_content_type = text/markdown
keywords = evolutionary-algorithms, drug-discovery, reaction-rules
author = João Correia
author_email = [email protected]
url = https://github.com/BioSystemsUM/ReactEA
license = GPL-3.0 license
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.03.1
numpy==1.21.5
pandas==1.3.5
cytoolz==0.11.2
jmetalpy
PyYAML==6.0
matplotlib==3.5.1
chembl_structure_pipeline
joblib==1.1.0
networkx==2.6.3
click==8.1.3
[options.entry_points]
console_scripts =
reactea = reactea.cli:reactea_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]
reactea = py.typed
reactea.data.reactionrules=
reaction_rules_reactea.tsv.bz2
[flake8]
max-line-length = 160