-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.27 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
[project]
name = "dapi"
version = "0.5.0"
description = "DesignSafe API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Krishna Kumar", email = "krishnak@utexas.edu" },
{ name = "Pedro Arduino", email = "parduino@uw.edu" },
{ name = "Scott Brandenberg", email = "sjbrandenberg@ucla.edu" },
]
dependencies = [
"numpy>=1.21.0,<2.0; python_version < '3.10'",
"numpy>=1.21.0; python_version >= '3.10'",
"pandas>=1.3.0,<3.0.0; python_version < '3.10'",
"pandas>=2.1.0; python_version >= '3.10'",
"sqlalchemy>=2.0.41",
"pymysql>=1.1.1",
"python-dotenv>=1.1.0",
"tqdm>=4.67.1",
"exceptiongroup>=1.3.0; python_version < '3.11'",
"tapipy>=1.8.4",
"jsonschema>=4.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.2",
"ruff>=0.8.0",
"ipykernel>=6.26.0",
]
docs = [
"jupyter-book>=2.0.0",
"sphinx>=7.0",
"sphinx-autodoc-typehints>=2.0",
"furo",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
ignore = ["E741"]
[tool.ruff.lint.per-file-ignores]
"examples/**" = ["E402"]
[tool.ruff.format]
docstring-code-format = true
[tool.hatch.build.targets.wheel]
packages = ["dapi"]