-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
86 lines (70 loc) · 1.86 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = nmr_to_structure
description = Code to reproduce NMR to Structure paper
author = Marvin Alberts
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.8
Programming Language :: Python :: 3.9
[options]
package_dir =
= src
packages = find:
include_package_data = True
python_requires = >= 3.7
install_requires =
click>=8.0.4
pandas>=1.4.2
numpy>=1.23.0
scipy>=1.7.3
scikit-learn>=1.1.3
regex>=2022.3.15
tqdm>=4.64.0
rdkit>=2022.9.1
tqdm>=4.65.0
opennmt-py>=3.0.3
PyAutoGUI>=0.9.53
rxn-chem-utils>=1.1.4
[options.packages.find]
where = src
[options.extras_require]
dev =
black>=23.1.0
flake8>=6.0.0
isort>=5.12.0
mypy>=1.0.0
pandas-stubs>=2.0.1.230501
types-psutil>=5.9.5.16
types-PyAutoGUI>=0.9.3.7
types-regex>=2023.6.3.1
types-tqdm>=4.65.0.2
[options.entry_points]
console_scripts =
run_simulation=nmr_to_structure.nmr_generation.run_mestrenova_simulation:main
gather_data=nmr_to_structure.nmr_generation.gather_data:main
prepare_nmr_input=nmr_to_structure.prepare_input.prepare_nmr_input:main
prepare_nmr_rxn_input=nmr_to_structure.prepare_input.prepare_nmr_rxn_input:main
train_model=nmr_to_structure.training.run_training:main
score_model=nmr_to_structure.training.score:main
[flake8]
max-line-length = 80
select = C,E,F,W,B,B950
ignore = E203, E501, W503, W605
[mypy]
check_untyped_defs = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-rdkit.*]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True
[mypy-.nmr_utils.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True