-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "quaac"
dynamic = [
"version" # this will be set by hatch
]
license = "MIT"
authors = [
{ name="James Kerns", email="jkerns100@gmail.com" },
]
description = "A package for reading and writing QuAAC files."
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"pydantic[email] >= 2.0.0",
"email-validator",
"pyyaml",
"eval-type-backport; python_version<='3.9'",
"typing-extensions>=4.12.2; python_version<'3.9'",
"annotated-types>=0.7.0",
"pydantic-core>=2.23.4",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/jrkerns/quaac"
Issues = "https://github.com/jrkerns/quaac/issues"
[tool.hatch.version]
# https://hatch.pypa.io/latest/version/
path = "quaac/version.py" # hatch will automatically set the version to the value in this file.
[tool.uv]
dev-dependencies = [
'hatch',
'sphinx',
'sphinx-autobuild',
'nox',
"twine>=5.1.1",
"pytest>=8.3.3",
]