-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (49 loc) · 1008 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "interstate"
version = "0.0.1"
description = "Hassle free determination of committor functions using E(3)-equivariant graph neural networks."
authors=[
{name="Killian Sheriff", email="[email protected]"},
]
readme="README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
]
[project.urls]
repository="https://github.com/TRI-AMDD/interstate"
[tool.setuptools]
py-modules = ["interstate"]
[tool.setuptools.packages.find]
exclude = [
"misc*",
"docs*",
"examples*",
]
[tool.pydocstyle]
select = ["D415", "D403"]
[tool.black]
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
ignore = ["E741", "E203", "W503", "E731", "E721"]
max-line-length = 127
max-complexity = 64
[tool.pytest.ini_options]
testpaths = ["tests"]