-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (64 loc) · 2.01 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
[metadata]
name = rxn-metrics
version = attr: rxn.metrics.__version__
description = Metrics for RXN models
author = IBM RXN team
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/rxn4chemistry/rxn-metrics
project_urls =
Documentation = https://rxn4chemistry.github.io/rxn-metrics/
Repository = https://github.com/rxn4chemistry/rxn-metrics
classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >= 3.6
zip_safe = False
include_package_data = True
install_requires =
click>=8.0
pandas>=1.1.0
rxn-chem-utils>=1.3.0
rxn-onmt-models>=1.0.0
rxn-onmt-utils>=1.0.0
rxn-utils>=1.1.9
[options.packages.find]
where = src
[options.package_data]
rxn.metrics =
py.typed
[options.extras_require]
dev =
black>=22.3.0
bump2version>=1.0.1
flake8>=3.8.4
isort>=5.10.1
mypy>=0.910
pytest>=5.3.4
types-setuptools>=57.4.14
rdkit =
# install RDKit. This is not as a setup dependency in order not to install it
# in downstream packages and avoid potential conflicts with the conda
# installation of RDKit
rdkit-pypi>=2021.3.2 ; python_version<"3.7"
rdkit>=2022.3.4 ; python_version>="3.7"
rxnmapper =
rxnmapper>=0.3.0
transformers<4.23.0 # Versions >=4.23.0 are not compatible with torch 1.5.1
[options.entry_points]
console_scripts =
rxn-evaluate-metrics = rxn.metrics.scripts.rxn_evaluate_metrics:main
rxn-parse-metrics-into-csv = rxn.metrics.scripts.parse_metrics_into_csv:main
rxn-prepare-context-metrics = rxn.metrics.scripts.prepare_context_metrics:main
rxn-prepare-forward-metrics = rxn.metrics.scripts.prepare_forward_metrics:main
rxn-prepare-retro-metrics = rxn.metrics.scripts.prepare_retro_metrics:main
[flake8]
extend-ignore = E203, E501