-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.43 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-conformational-sampling"
version = "0.6.4"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8,<3.12"
authors = [
{ name = "Joshua Kammeraad" },
{ name = "Soumik Das"},
]
dependencies = [
"ase",
"hvplot",
"morfeus-ml",
"nglview",
"numpy<2",
"openbabel-wheel",
"pandas",
"panel-chemistry",
"panel<1",
"param<2",
"pyGSM @ git+https://github.com/ZimmermanGroup/pyGSM.git",
"pytest",
"rdkit",
"setuptools", # necessary for pyGSM to run on python 3.11
"stk<=2021.8.2.0",
"stko<=0.0.40",
"xtb",
]
[project.optional-dependencies]
dev = [
"ruff",
"dask-jobqueue",
"snakeviz",
]
vscode = [
"jupyter",
"pylint",
]
[project.urls]
Homepage = "https://github.com/ZimmermanGroup/py-conformational-sampling"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.ruff.format]
quote-style = "single"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
py-conformational-sampling = { path = ".", editable = true }
[tool.pixi.system-requirements]
linux = "3.10"
[tool.pixi.environments]
default = { solve-group = "default" }
dev = { features = ["dev"], solve-group = "default" }
vscode = { features = ["vscode"], solve-group = "default" }