-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (45 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
56 lines (45 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "maws"
version = "0.1.0.dev0"
description = "MAWS: residue-based chemistry, complex preparation, and OpenMM routines for aptamer workflows"
readme = "README.md"
requires-python = ">=3.10"
# To add names of authors into this.
# Runtime deps kept small; versions mirror your notes where sensible
dependencies = [
"numpy",
"openmm>=8.3.0,<8.4.0",
"numba>=0.40.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov",
"ruff>=0.12.0",
"pre-commit",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["maws*"]
# Include root-level data via MANIFEST.in (below)
[tool.setuptools.package-data]
# if you later move data under maws/, switch to:
# maws = ["data/*.pdb", "data/*.sdf", "data/*.lib", "data/*.frcmod"]
[tool.ruff]
line-length = 88
target-version = "py310"
exclude = ["__pycache__", ".venv", "build", "dist", ".git"]
[tool.ruff.lint]
select = ["E", "F", "B", "I", "UP", "N", "C4"]
ignore = ["N803", "N806"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"