-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.01 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-scm",
"wheel",
]
[project]
authors = [{ email = "[email protected]", name = "Allen Goodman" }]
dependencies = [
"pooch",
"torch",
"tqdm",
]
dynamic = ["version"]
license = { file = "LICENSE" }
name = "beignet"
readme = "README.md"
requires-python = ">=3.10"
[project.optional-dependencies]
all = [
"beignet[datasets,docs,mdtraj,test]",
]
datasets = [
"biopython",
"lmdb",
"pandas",
"pooch",
]
docs = [
"mkdocs-material",
"mkdocstrings[python]",
]
mdtraj = [
"mdtraj",
]
test = [
"hypothesis",
"numpy==1.26.4",
"pytest",
"pytest-mock",
"scipy",
]
[tool.ruff]
lint.select = [
"B", # FLAKE8-BUGBEAR
"E", # PYCODESTYLE ERRORS
"F", # PYFLAKES
"I", # ISORT
"W", # PYCODESTYLE WARNINGS
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"F401", # MODULE IMPORTED BUT UNUSED
]
[tool.setuptools_scm]
local_scheme = "no-local-version"