-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
31 lines (29 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "immanuel"
version = "1.4.2"
description = "Quickly produce both human-readable and JSON-formatted astrology chart data based on the Swiss Ephemeris and astro.com."
authors = [
{ name = "Robert Davies", email = "[email protected]" },
]
license = { file = "LICENSE.md" }
readme = "README.md"
keywords = ["astrology", "api", "pyswisseph", "swisseph", "swiss ephemeris", "astro.com", "astro gold"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"pyswisseph~=2.10",
"python-dateutil",
"timezonefinder~=5.2",
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/theriftlab/immanuel-python"
"Documentation" = "https://github.com/theriftlab/immanuel-python/blob/master/docs/1-overview.md"
"Bug Tracker" = "https://github.com/theriftlab/immanuel-python/issues"