-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
86 lines (78 loc) · 2.05 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
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "starplot"
authors = [{name = "Steve Berardi", email = "hello@steveberardi.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Matplotlib",
]
dynamic = ["version", "description"]
keywords = ["astronomy", "stars", "charts", "maps", "constellations", "sky", "plotting"]
dependencies = [
"matplotlib >= 3.8.0",
"numpy >= 1.26.2",
"pandas <= 2.2.3",
"pydantic >= 2.10.6",
"shapely >= 2.0.1",
"skyfield >= 1.41",
"cartopy >= 0.21.1",
"geopandas >= 1.0.1",
"pillow >= 10.0.0",
"PyYAML >= 6.0.1",
"pyarrow >= 14.0.2",
"pyogrio >= 0.10.0",
"rtree >= 1.2.0",
"requests >= 2.31.0",
"duckdb >= 1.4.4",
"sqlglot >= 28.9.0",
"ibis-framework[duckdb,geospatial] >= 11",
"astropy-healpix >= 1.1.2"
]
[project.urls]
Home = "https://starplot.dev"
Documentation = "https://starplot.dev"
Source = "https://github.com/steveberardi/starplot"
[project.scripts]
starplot = "starplot.cli:main"
[tool.flit.sdist]
include = [
"src/starplot/data/library/*.parquet",
]
[tool.pytest.ini_options]
testpaths = ["./tests"]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.ruff.lint]
ignore = ["E501"]
[tool.marimo.display]
theme = "dark"
[dependency-groups]
dev = [
"black==23.3.0",
"click==8.2.1",
"flit==3.9.0",
"griffe==1.15.0",
"imagehash==4.3.1",
"ipython==7.12.0",
"marimo==0.15.2",
"mkdocs-glightbox==0.4.0",
"mkdocs-macros-plugin==1.3.7",
"mkdocs-material==9.7.1",
"mkdocstrings==1.0.0",
"mkdocstrings-python==2.0.1",
"mypy==1.3.0",
"pygments==2.19.2",
"pytest==7.3.2",
"pytest-cov==4.1.0",
"rich==13.9.4",
"ruff==0.14.10",
"snakeviz==2.2.2",
]