-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 1.59 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
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["scikit-build-core>=0.9"]
build-backend = "scikit_build_core.build"
[project]
name = "diffcg"
description = "A JAX-based modular package for differentiable coarse-graining"
readme = "README.md"
requires-python = ">=3.8"
version = "0.1.0"
license = {text = "MIT"}
authors = [{ name = "Zhenghao Wu", email = "zhenghao.wu@xjtlu.edu.cn" }]
maintainers = [{ name = "WuResearchGroup", email = "zhenghao.wu@xjtlu.edu.cn" }]
keywords = ["coarse-graining", "molecular dynamics", "polymers"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.23",
"scipy>=1.9",
"pandas>=1.5",
"ase>=3.22",
"chemfiles>=0.10",
"optax>=0.1.6",
"jax>=0.4",
"jax-md>=0.2.7",
]
[project.urls]
Homepage = "https://github.com/your-org/diffCG"
Issues = "https://github.com/your-org/diffCG/issues"
Documentation = "https://your-org.github.io/diffCG/"
[project.optional-dependencies]
examples = ["matplotlib>=3.6", "dpdata>=0.2"]
dev = [
"build",
"twine",
"pytest",
"pytest-cov",
"pre-commit",
"ruff>=0.4",
"black>=24.3",
"mypy>=1.7",
]
docs = ["mkdocs-material", "mkdocstrings[python]"]
[tool.scikit-build]
cmake.args = ["-DCMAKE_BUILD_TYPE=Release"]
wheel.packages = ["diffcg"]
sdist.include = ["vendor/"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"