-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (62 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
64
65
66
67
68
[metadata]
name = rxn-utils
version = attr: rxn.utilities.__version__
description = General utilities (not related to chemistry)
author = IBM RXN team
author_email = rxn4chemistry@zurich.ibm.com
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/rxn4chemistry/rxn-utilities
project_urls =
Documentation = https://rxn4chemistry.github.io/rxn-utilities/
Repository = https://github.com/rxn4chemistry/rxn-utilities
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>=8.0
diskcache>=5.2.1
pydantic>=1.9.0
pydantic_settings>=2.1.0
pymongo>=3.9.0
tqdm>=4.31.0
typing-extensions>=4.1.1
[options.packages.find]
where = src
[options.package_data]
rxn.utilities =
py.typed
[options.extras_require]
dev =
black>=22.3.0
bump2version>=1.0.1
flake8>=3.7.9
isort>=5.10.1
mypy>=0.910
pytest-cov>=2.8.1
pytest>=7.0.1
types-setuptools>=57.4.14
types-tqdm>=4.64.0
modeling =
torch>=1.5.0,<2.0.0
transformers>=4.21.0
[options.entry_points]
console_scripts =
rxn-extract-csv-column = rxn.utilities.scripts.extract_csv_column:main
rxn-stable-shuffle = rxn.utilities.scripts.stable_shuffle:main
[flake8]
extend-ignore = E203, E501