-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.15 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
[build-system]
requires = [
"setuptools >= 40.9.0",
"versioneer[toml]==0.26",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "openff-nagl-models"
description = "OpenFF NAGL Models"
license = { file = "LICENSE" }
authors = [
{name = "Lily Wang", email = "[email protected]"},
]
maintainers = [
{name = "Lily Wang", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"importlib_resources",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"numpy",
]
[project.entry-points."openforcefield.nagl_model_directory"]
get_nagl_model_dirs_paths = "openff.nagl_models:get_nagl_model_dirs_paths"
[project.urls]
source = "https://github.com/openforcefield/openff-nagl-models"
# documentation = "https://openff-nagl-models.readthedocs.io"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"openff/nagl_models/tests",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "openff/nagl_models/_version.py"
versionfile_build = "openff/nagl_models/_version.py"
tag_prefix = "v"
parentdir_prefix = "openff-nagl-models-"