-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=9", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[project]
name = "ephem-cli"
dynamic = ["version"]
description = "A minimal and configurable astrology CLI"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pysweph>=2.10.3.5",
"pyyaml",
"rich",
"tomli_w",
]
authors = [
{name = "sailorfe", email = "sailorf@proton.me"}
]
license = "AGPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = ["astrology", "horoscope"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: Religion",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Religion",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
ephem = "ephem.cli:main"
[project.urls]
Repository = "https://codeberg.org/sailorfe/ephem"
[dependency-groups]
docs = ["mkdocs", "mkdocs-material"]
[tool.uv]
default-groups = "all"