We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d81cdc2 commit dd06aabCopy full SHA for dd06aab
pyproject.toml
@@ -43,6 +43,12 @@ Source = "https://github.com/steveberardi/starplot"
43
[project.scripts]
44
starplot = "starplot.cli:main"
45
46
+[tool.flit.sdist]
47
+include = [
48
+ "src/starplot/data/library/sky.db",
49
+ "src/starplot/data/library/bigsky*.parquet",
50
+]
51
+
52
[tool.pytest.ini_options]
53
testpaths = ["./tests"]
54
filterwarnings = ["ignore::DeprecationWarning"]
src/starplot/__init__.py
@@ -1,6 +1,6 @@
1
"""Star charts and maps of the sky"""
2
3
-__version__ = "0.15.0"
+__version__ = "0.15.1"
4
5
from .base import BasePlot # noqa: F401
6
from .map import MapPlot, Projection # noqa: F401
0 commit comments