-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.39 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
59
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "atct"
version = "1.0.1"
description = "ATcT: Active Thermochemical Tables — Python client for v1 API"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "David H. Bross" },
{ name = "Branko Ruscic" }
]
maintainers = [
{ name = "ATcT Team", email = "ATcT@anl.gov" }
]
keywords = ["thermochemistry", "ATcT", "chemistry", "science", "data"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
]
dependencies = ["httpx>=0.25.0"]
[project.optional-dependencies]
pandas = ["pandas>=2.0"]
numpy = ["numpy>=1.20"]
all = ["numpy>=1.20", "pandas>=2.0"]
[project.urls]
Homepage = "https://atct.anl.gov"
Repository = "https://github.com/Dbross/atct"
Issues = "https://github.com/Dbross/atct/issues"
[tool.hatch.build.targets.sdist]
include = ["src", "README.md", "LICENSE"]
[tool.hatch.build.targets.wheel]
packages = ["src/atct"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "UP", "B"]
target-version = "py39"
[tool.mypy]
python_version = "3.9"
strict = true
warn_unused_ignores = true
mypy_path = "src"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"