-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (39 loc) · 1.08 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
# Uncomment if needed
# [tool.pytest.ini_options]
# testpaths = [
# "tests",
# ]
[build-system]
requires = ["setuptools>=43", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "gbigsmiles"
description = "Bigsmiles extension handling the generation of ensemble smiles strings."
authors = [
{ name = "Ludwig Schneider", email = "[email protected]" },
]
license = { text = "GPL-3.0", files = ["LICENSE.md"] }
requires-python = ">=3.9"
dependencies = ["scipy", "numpy", "networkx", "matplotlib", "pytest", "rdkit"]
dynamic = ["version"]
readme = "README.md"
[tool.setuptools.dynamic]
version = { attr = "gbigsmiles._version.version" }
[tool.setuptools_scm]
write_to = "src/gbigsmiles/_version.py"
version_file = "src/gbigsmiles/_version.py"
[tool.black]
line-length = 100
[tool.coverage.run]
omit = [
"*/__init__.py",
"path_to_exclude/*",
"tests/*",
"*/_pytest/*",
"*/more_itertools/*",
"*/pluggy/*",
"*/py/*",
"*/six.py",
]
[tool.setuptools.package-data]
gbigsmiles = ["data/ffbonded.itp", "data/ffnonbonded.itp", "data/opls.par"]