-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
59 lines (53 loc) · 1.32 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
52
53
54
55
56
57
58
59
[project]
name = "astral"
version = "3.3"
description = "Calculations for the sun and moon."
authors = [{ name = "Simon Kennedy", email = "[email protected]" }]
dependencies = ["tzdata>=2024.1; sys_platform == 'win32'"]
requires-python = ">=3.10"
readme = "ReadMe.md"
license = { text = "Apache-2.0" }
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.urls]
Homepage = "https://github.com/sffjunkie/astral"
Issues = "https://github.com/sffjunkie/astral/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = [
"freezegun>=1.4.0",
"pytest>=8.1.1",
"mypy>=1.9.0",
"types-freezegun>=1.1.10",
"tox>=4.14.1",
"ruff>=0.3.2",
"pytest-cov>=4.1.0",
"flake8>=7.0.0",
]
docs = ["sphinx-book-theme>=1.1.2"]
[tool.pdm.scripts]
test = "pytest"
typecheck = "mypy ./src/astral/"
[tool.pytest.ini_options]
markers = ["unit", "integration"]
pythonpath = ["src"]
junit_family = "xunit2"
norecursedirs = [
".direnv",
".venv",
".git",
".tox",
".cache",
".settings",
"dist",
"build",
"docs",
]