-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
60 lines (53 loc) · 1.44 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
[metadata]
name = rxn-chem-utils
version = attr: rxn.chemutils.__version__
description = Chemistry-related utilities
author = IBM RXN team
author_email = [email protected]
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >= 3.7
zip_safe = False
include_package_data = True
install_requires =
attrs>=21.2.0
click>=7.0
rxn-utils>=1.1.9
[options.packages.find]
where = src
[options.package_data]
rxn.chemutils =
py.typed
[options.extras_require]
dev =
black>=22.3.0
bump2version>=1.0.1
flake8>=3.7.9
isort>=5.9.3
mypy>=0.910
pytest>=5.3.4
types-setuptools>=57.4.17
rdkit =
rdkit>=2022.3.4
[options.entry_points]
console_scripts =
rxn-canonicalize = rxn.chemutils.scripts.canonicalize:main
rxn-combine-reaction = rxn.chemutils.scripts.combine_reaction:main
rxn-detokenize = rxn.chemutils.scripts.detokenize:main
rxn-tokenize = rxn.chemutils.scripts.tokenize:main
rxn-rdf-to-smiles = rxn.chemutils.scripts.rdf_to_smiles:main
[flake8]
extend-ignore = E203, E501