-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 1.03 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
[project]
name = "pyhd"
description = "Python library for Human Design – BodyGraph calculations and analysis."
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "Pascal Polleunus"}]
keywords = ["human-design", "bodygraph", "i-ching", "astrology", "kabbalah", "chakra"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dynamic = ["version"]
# DEPENDENCIES =====================================================================================
requires-python = ">=3.10"
dependencies = [
"pyswisseph",
]
# PROJECT ==========================================================================================
[project.urls]
Homepage = "https://pyhd.readthedocs.io/"
Source = "https://github.com/ppo/pyhd"
"Bug Reports" = "https://github.com/ppo/pyhd/issues"
[project.scripts]
pyhd = "pyhd.cli:main" # CLI entry point.