-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.23 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
[project]
name = "analemma"
description = "Calculate sundial geometry and the equation of time, and plot the analemma"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
]
authors = [
{ name = "Russell Goyder", email = "[email protected]" }
]
license = { text = "MIT License" }
keywords = [
"sundial",
"analemma",
"gnomon",
"equation of time",
"orbit",
]
dependencies = [
"numpy",
"scipy",
"skyfield",
"matplotlib",
"sympy",
"galgebra",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"ruff>=0.8.4",
]
[tool.setuptools_scm]
[project.urls]
Homepage = "https://russellgoyder.github.io/sundial-latex/"
Documentation = "https://analemma.readthedocs.io/en/stable/"
Repository = "https://github.com/russellgoyder/sundial"
"Issue Tracker" = "https://github.com/russellgoyder/sundial/issues"
Changelog = "https://analemma.readthedocs.io/en/stable/changelog/"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"