-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (47 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "OpenAstro2"
version = "2.0.0"
description = "Open Source Astrology 2"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { text = "GPL" }
authors = [
{ name = "Pelle van der Scheer + DimmAstro" },
]
urls = { Homepage = "https://github.com/dimmastro/openastro2" }
dependencies = [
"pyswisseph==2.10.3.2",
"pytz",
"jsonpickle",
"requests==2.31.0",
"pydantic",
"terminaltables",
"skyfield==1.46",
"pydeck==0.8.0",
"svgwrite==1.4.3",
"numpy==1.26.4",
"ephem==4.2",
"geographiclib==2.0",
"json5==0.12.1",
"spiceypy==8.0.1",
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["openastro2.tests", "openastro2.tests.*"]
[tool.setuptools.package-data]
openastro2 = [
"VERSION",
"de421.bsp",
"openastro2_makePlanets_block.txt",
"settings/*",
"xml/*",
"icons/*",
"icons/aspects/*",
"locale/templates/*",
"locale/*/LC_MESSAGES/*",
"swiss_ephemeris/*",
]