-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "ephemeris-mcp"
version = "1.2.0"
description = "Precision astronomical ephemeris calculations via Model Context Protocol (MCP). Provides planetary positions using Swiss Ephemeris."
readme = "README.md"
authors = [{ name = "Scott Carroll", email = "scott@rippleroot.studios" }]
requires-python = ">=3.10, <3.12"
license = { text = "AGPL-3.0-or-later" }
keywords = ["mcp", "astrology", "ephemeris", "ai", "llm", "model-context-protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"flatlib",
"mcp>=0.1.0",
"pydantic",
"structlog>=24.0.0"
]
[project.urls]
Homepage = "https://github.com/scottchronicity/ephemeris-mcp"
Documentation = "https://github.com/scottchronicity/ephemeris-mcp#readme"
Repository = "https://github.com/scottchronicity/ephemeris-mcp"
Issues = "https://github.com/scottchronicity/ephemeris-mcp/issues"
# This tells uv to install these tools
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"ruff",
"python-semantic-release>=9.0.0",
]
[project.scripts]
ephemeris-mcp = "ephemeris_mcp.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"ruff>=0.8.0",
"python-semantic-release>=9.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--cov=ephemeris_mcp --cov-report=term-missing"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
branch = "main"
commit_parser = "conventional"
build_command = "pip install build && python -m build"
upload_to_pypi = true
upload_to_release = true
tag_format = "v{version}"