-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 995 Bytes
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
[project]
name = "vamdc-node-software"
version = "12.07.0"
description = "VAMDC Node Software - API for accessing atomic and molecular data"
readme = "README"
requires-python = ">=3.11"
license = { file = "LICENSE" }
dependencies = [
"django>=5.2,<5.3",
"pybtex>=0.24.0",
"latexcodec>=2.0.1",
"requests>=2.31.0",
"pyyaml>=6.0",
"gunicorn>=21.0.0",
"pyparsing>=3.0.0",
"six>=1.16.0",
]
[project.optional-dependencies]
mysql = [
"mysqlclient>=2.2.0",
]
postgres = [
"psycopg2-binary>=2.9.0",
]
dev = [
"ipython>=8.0.0",
"pytest>=7.0.0",
"pytest-django>=4.8.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["vamdctap", "imptools", "vamdclib"]
[tool.setuptools.package-data]
vamdctap = ["*.py"]
imptools = ["*.py"]
[tool.django]
settings_module = "settings"
[dependency-groups]
dev = [
"ipython>=8.0.0",
"pytest>=7.0.0",
"pytest-django>=4.8.0",
]