-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (74 loc) · 1.65 KB
/
pyproject.toml
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
85
[build-system]
requires = ['flit_core >=3.4,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'ai4chem'
dynamic = ["version", "description"]
authors = [
{name = 'Austin Zadoks', email = 'austin.zadoks@epfl.ch'},
{name = 'Zequan Li', email = 'zequan.li@epfl.ch'},
{name = 'Nathalie Bui', email = 'nathalie.bui@epfl.ch'},
]
readme = 'README.md'
license = {file = 'LICENSE'}
requires-python = '>=3.9'
dependencies = [
"numpy",
"pandas",
"openpyxl",
"scikit-learn",
"h5py",
"torch",
"rdkit",
]
[project.urls]
Home = 'https://github.com/azadoks/ai_for_chemistry'
Source = 'https://github.com/azadoks/ai_for_chemistry'
[tool.flit.module]
name = 'ai4chem'
[tool.flit.sdist]
exclude = [
'.github/',
'docs/',
'examples/',
'test/',
]
[tool.flynt]
line-length = 120
fail-on-change = true
[tool.isort]
force_sort_within_sections = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
'duplicate-code',
'import-outside-toplevel',
'missing-docstring',
'locally-disabled',
'too-few-public-methods',
'too-many-arguments',
'too-many-instance-attributes',
'use-dict-literal',
]
[tool.pylint.design]
max-locals=20
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = [
'test',
]
filterwarnings = [
'ignore::DeprecationWarning:frozendict:',
]
[tool.yapf]
align_closing_bracket_with_visual_indent = true
based_on_style = 'google'
coalesce_brackets = true
column_limit = 120
dedent_closing_brackets = true
indent_dictionary_value = false
split_arguments_when_comma_terminated = true