-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
62 lines (56 loc) · 1.74 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
[metadata]
name = paragraph2actions
version = attr: paragraph2actions.__version__
description = Extraction of actions from experimental procedures
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/paragraph2actions
project_urls =
Repository = https://github.com/rxn4chemistry/paragraph2actions
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:
python_requires = >=3.6
zip_safe = False
include_package_data = True
install_requires =
attrs>=19.1.0
click>=7.0
nltk>=3.4.5
rxn-onmt-utils>=1.1.0
sentencepiece>=0.1.83
textdistance>=4.1.5
[options.packages.find]
where = src
[options.package_data]
paragraph2actions =
py.typed
[options.extras_require]
dev =
bump2version>=1.0.1
black>=23.1.0
isort>=5.12.0
flake8>=6.0.0
mypy>=1.0.0
types-setuptools>=57.4.14
cde =
ChemDataExtractor>=1.3.0
[options.entry_points]
console_scripts =
paragraph2actions-calculate-metrics = paragraph2actions.scripts.calculate_metrics:main
paragraph2actions-create-tokenizer = paragraph2actions.scripts.create_sentencepiece_tokenizer:main
paragraph2actions-generate-annotation-samples = paragraph2actions.scripts.generate_samples_to_annotate:main
paragraph2actions-tokenize = paragraph2actions.scripts.tokenize_with_sentencepiece:main
paragraph2actions-translate = paragraph2actions.scripts.translate_actions:main
[flake8]
extend-ignore = E203, E501