starplot 0.14.0__py2.py3-none-any.whl → 0.15.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of starplot might be problematic. Click here for more details.
- starplot/__init__.py +3 -1
- starplot/base.py +149 -37
- starplot/cli.py +33 -0
- starplot/data/__init__.py +6 -24
- starplot/data/bigsky.py +58 -40
- starplot/data/constellation_lines.py +827 -0
- starplot/data/constellation_stars.py +1501 -0
- starplot/data/constellations.py +43 -32
- starplot/data/db.py +17 -0
- starplot/data/dsos.py +24 -141
- starplot/data/library/{stars.bigsky.mag11.parquet → bigsky.0.4.0.stars.mag11.parquet} +0 -0
- starplot/data/library/sky.db +0 -0
- starplot/data/stars.py +45 -24
- starplot/geod.py +0 -6
- starplot/geometry.py +105 -6
- starplot/horizon.py +118 -107
- starplot/map.py +45 -96
- starplot/mixins.py +75 -14
- starplot/models/__init__.py +1 -1
- starplot/models/base.py +10 -128
- starplot/models/constellation.py +55 -32
- starplot/models/dso.py +132 -67
- starplot/models/moon.py +57 -78
- starplot/models/planet.py +44 -69
- starplot/models/star.py +91 -60
- starplot/models/sun.py +32 -53
- starplot/optic.py +14 -17
- starplot/plotters/constellations.py +81 -78
- starplot/plotters/dsos.py +49 -68
- starplot/plotters/experimental.py +1 -1
- starplot/plotters/milkyway.py +18 -20
- starplot/plotters/stars.py +91 -116
- starplot/profile.py +16 -0
- starplot/settings.py +26 -0
- starplot/styles/__init__.py +2 -0
- starplot/styles/base.py +7 -17
- starplot/styles/ext/blue_gold.yml +135 -0
- starplot/styles/ext/blue_light.yml +5 -4
- starplot/styles/ext/blue_medium.yml +11 -7
- starplot/styles/extensions.py +1 -0
- starplot/warnings.py +5 -0
- {starplot-0.14.0.dist-info → starplot-0.15.1.dist-info}/METADATA +11 -11
- {starplot-0.14.0.dist-info → starplot-0.15.1.dist-info}/RECORD +46 -54
- starplot-0.15.1.dist-info/entry_points.txt +3 -0
- starplot/data/bayer.py +0 -3499
- starplot/data/flamsteed.py +0 -2682
- starplot/data/library/constellation_borders_inv.gpkg +0 -0
- starplot/data/library/constellation_lines_hips.json +0 -709
- starplot/data/library/constellation_lines_inv.gpkg +0 -0
- starplot/data/library/constellations.gpkg +0 -0
- starplot/data/library/constellations_hip.fab +0 -88
- starplot/data/library/milkyway.gpkg +0 -0
- starplot/data/library/milkyway_inv.gpkg +0 -0
- starplot/data/library/ongc.gpkg.zip +0 -0
- starplot/data/library/stars.hipparcos.parquet +0 -0
- starplot/data/messier.py +0 -111
- starplot/data/prep/__init__.py +0 -0
- starplot/data/prep/constellations.py +0 -108
- starplot/data/prep/dsos.py +0 -299
- starplot/data/prep/utils.py +0 -16
- starplot/models/geometry.py +0 -44
- {starplot-0.14.0.dist-info → starplot-0.15.1.dist-info}/LICENSE +0 -0
- {starplot-0.14.0.dist-info → starplot-0.15.1.dist-info}/WHEEL +0 -0
starplot/warnings.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import warnings
|
|
2
2
|
|
|
3
|
+
import matplotlib
|
|
4
|
+
|
|
3
5
|
|
|
4
6
|
def suppress():
|
|
5
7
|
# ignore noisy matplotlib warnings
|
|
@@ -8,6 +10,9 @@ def suppress():
|
|
|
8
10
|
message="Setting the 'color' property will override the edgecolor or facecolor properties",
|
|
9
11
|
)
|
|
10
12
|
|
|
13
|
+
# Silence various matplotlib logs (e.g. building font cache)
|
|
14
|
+
matplotlib.set_loglevel("critical")
|
|
15
|
+
|
|
11
16
|
# Silence all user warnings
|
|
12
17
|
warnings.filterwarnings("ignore", category=UserWarning)
|
|
13
18
|
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: starplot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.1
|
|
4
4
|
Summary: Star charts and maps of the sky
|
|
5
5
|
Keywords: astronomy,stars,charts,maps,constellations,sky,plotting
|
|
6
6
|
Author-email: Steve Berardi <hello@steveberardi.com>
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -18,23 +17,24 @@ Requires-Dist: pydantic >= 2.0.3
|
|
|
18
17
|
Requires-Dist: shapely >= 2.0.1
|
|
19
18
|
Requires-Dist: skyfield >= 1.41
|
|
20
19
|
Requires-Dist: cartopy >= 0.21.1
|
|
21
|
-
Requires-Dist: geopandas >= 0.
|
|
20
|
+
Requires-Dist: geopandas >= 1.0.1
|
|
22
21
|
Requires-Dist: pillow >= 10.0.0
|
|
23
22
|
Requires-Dist: PyYAML >= 6.0.1
|
|
24
23
|
Requires-Dist: pyarrow >= 14.0.2
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist: pyogrio >= 0.7.2
|
|
24
|
+
Requires-Dist: pyogrio >= 0.10.0
|
|
27
25
|
Requires-Dist: rtree >= 1.2.0
|
|
28
26
|
Requires-Dist: requests >= 2.31.0
|
|
27
|
+
Requires-Dist: duckdb >= 1.1.3
|
|
28
|
+
Requires-Dist: ibis-framework[duckdb, geospatial] >= 9.5.0
|
|
29
29
|
Project-URL: Documentation, https://starplot.dev
|
|
30
30
|
Project-URL: Home, https://starplot.dev
|
|
31
31
|
Project-URL: Source, https://github.com/steveberardi/starplot
|
|
32
32
|
|
|
33
33
|
# <img src="https://raw.githubusercontent.com/steveberardi/starplot/main/docs/images/favicon.svg" width="48" style="vertical-align:middle"> Starplot
|
|
34
|
-

|
|
35
|
+

|
|
36
|
+

|
|
37
|
+

|
|
38
38
|
|
|
39
39
|
**Starplot** is a Python library for creating star charts and maps of the sky.
|
|
40
40
|
|
|
@@ -45,6 +45,7 @@ Project-URL: Source, https://github.com/steveberardi/starplot
|
|
|
45
45
|
- 🪐 **Planets and Deep Sky Objects (DSOs)** - more than 14,000 objects built-in
|
|
46
46
|
- 🎨 **Custom Styles** - for all objects
|
|
47
47
|
- 📥 **Export** - png, svg, jpeg
|
|
48
|
+
- 🚀 **Data Backend** - powered by DuckDB + Ibis for fast object lookup
|
|
48
49
|
- 🧭 **Label Collision Avoidance**
|
|
49
50
|
|
|
50
51
|
## Examples
|
|
@@ -80,7 +81,7 @@ p = sp.MapPlot(
|
|
|
80
81
|
autoscale=True,
|
|
81
82
|
)
|
|
82
83
|
p.constellations()
|
|
83
|
-
p.stars(
|
|
84
|
+
p.stars(where=[_.magnitude < 4.6])
|
|
84
85
|
p.constellation_labels()
|
|
85
86
|
p.export("starchart.png")
|
|
86
87
|
```
|
|
@@ -106,7 +107,6 @@ https://discord.gg/WewJJjshFu
|
|
|
106
107
|
Contributing to Starplot is welcome and very much appreciated! Please see [here](CONTRIBUTING.md) for details.
|
|
107
108
|
|
|
108
109
|
## Coming Soon
|
|
109
|
-
- 🗄️ Data optimizations
|
|
110
110
|
- 🧮 Coordinate system helpers
|
|
111
111
|
- 🌑 Planet moons
|
|
112
112
|
- ✴️ Custom markers
|
|
@@ -1,68 +1,59 @@
|
|
|
1
|
-
starplot/__init__.py,sha256=
|
|
2
|
-
starplot/base.py,sha256=
|
|
1
|
+
starplot/__init__.py,sha256=QxT09KkHrc1BgwSa7b17PqldDnPfwCXDkFRJGzO4KNU,558
|
|
2
|
+
starplot/base.py,sha256=JjBqM96gPoBFngbxZ5dsHDKwbsBsrviEipAlljtl8YU,42842
|
|
3
3
|
starplot/callables.py,sha256=_zDGCAJTqqNLvCtcIt4PVEe2L0Ggvl6pj-7ZFI-0zqI,4043
|
|
4
|
+
starplot/cli.py,sha256=W-V-h1DeD8zwzdhYuQ-i26LSZWYcS_NJ0zRXa-dmy1o,711
|
|
4
5
|
starplot/coordinates.py,sha256=7LDz32VTKa8H-4F67-XvzmjpcTVojZwYVJzXZkBaZ3U,136
|
|
5
|
-
starplot/geod.py,sha256=
|
|
6
|
-
starplot/geometry.py,sha256=
|
|
7
|
-
starplot/horizon.py,sha256=
|
|
8
|
-
starplot/map.py,sha256=
|
|
9
|
-
starplot/mixins.py,sha256=
|
|
10
|
-
starplot/optic.py,sha256=
|
|
6
|
+
starplot/geod.py,sha256=pVnDr-yxGjOIXwKCknbtCZiRle5IqRnqpY43s0PMnmA,2574
|
|
7
|
+
starplot/geometry.py,sha256=wr1vJo-WWP51bfblVC2CAR7288yWrG31dZg9ks9vfYg,4359
|
|
8
|
+
starplot/horizon.py,sha256=vsJCsJE5VJEe0vlx6A-L70LAGjbey9xMjgUcRSj1F4Y,15808
|
|
9
|
+
starplot/map.py,sha256=CIJC2CoAhH4SlV-dgLC4xDqCoyqXl7DOGegZafRIoqU,23441
|
|
10
|
+
starplot/mixins.py,sha256=8X-LhFbsVNBZN1PKIjlftknppRpcQMOMYE15gdNC-sE,4857
|
|
11
|
+
starplot/optic.py,sha256=7lGUOJf7z-xCu84zlsALF154Jm2riiHO3JzVPAfptKY,15318
|
|
11
12
|
starplot/optics.py,sha256=JfSzfrCx_g8r3upyukgJUtXekwyVkCJ3dZxdOclfzU4,8624
|
|
13
|
+
starplot/profile.py,sha256=V5LOZFDdnGo-P8ikWvV3jmUVJIKO3gd4H2bjBlk7aUM,300
|
|
12
14
|
starplot/projections.py,sha256=o5wHLoaU8o0s0Z2kkWKxeNbOrskvWG88ULAXDoLOGeA,3423
|
|
15
|
+
starplot/settings.py,sha256=DCylQwkrgUki1yHrelMF483t98NIDQ1bivCeWfeknJw,627
|
|
13
16
|
starplot/utils.py,sha256=49m8QXJl188Pgpef_82gyykly7ZjfAuHVEcSA5QFITA,3720
|
|
14
|
-
starplot/warnings.py,sha256=
|
|
15
|
-
starplot/data/__init__.py,sha256=
|
|
16
|
-
starplot/data/
|
|
17
|
-
starplot/data/
|
|
18
|
-
starplot/data/
|
|
19
|
-
starplot/data/
|
|
17
|
+
starplot/warnings.py,sha256=uKvGSAVpWKZIHMKxxegO5owFJnKvBYLyq3pJatD0qQ4,594
|
|
18
|
+
starplot/data/__init__.py,sha256=3M_uHlwyIsc9cyfabnOp-6CoXoMteYAaWuj4St9_1BE,308
|
|
19
|
+
starplot/data/bigsky.py,sha256=SiHzzhoy-DAZpJ-Q_-lmJqHRLwTKgosaVOEXYWQ94PI,2820
|
|
20
|
+
starplot/data/constellation_lines.py,sha256=Uz5Qd754ayXYQdUsPR5R1QN3AxK0yewgp1c0rOqMH7w,19281
|
|
21
|
+
starplot/data/constellation_stars.py,sha256=v5Xd8eXlzaNPFuJ7U_kB0pP3FT_bXGToo6gHw-jbQIk,38199
|
|
22
|
+
starplot/data/constellations.py,sha256=E-wEyZ4W5lcUS_StH26F9NMRsFyFs-utGxGcfRK7zBk,15484
|
|
23
|
+
starplot/data/db.py,sha256=77oWr2HkZ95K_mG4vLc-ivP_SOFIiFYwoqrtTw-YWtk,384
|
|
24
|
+
starplot/data/dsos.py,sha256=tx-6oDzKPthg-nxfda2ah5t10USdyrckP4UjM5k-e10,1237
|
|
20
25
|
starplot/data/ecliptic.py,sha256=Qre9YdFbTC9mAx-vd2C0Ou4CsnRehIScnTpmEUDDYcM,4638
|
|
21
|
-
starplot/data/
|
|
22
|
-
starplot/data/messier.py,sha256=DwLtdMKCgkC1O653rP-N3HxRFNWowULC7sVDN1cheHM,3793
|
|
23
|
-
starplot/data/stars.py,sha256=0Xq8TXqxmQaqcD0eoAq7MYF1y_rG9YgpphSI83N4jyk,11263
|
|
26
|
+
starplot/data/stars.py,sha256=PWAszqlIDpndySIW-uLAibCwbPia_AE6nK_w3pAQxz0,11862
|
|
24
27
|
starplot/data/utils.py,sha256=RPk3bnfL-KtjMk1VQygDD27INz_gEya_B1hu7X4K8hU,772
|
|
25
|
-
starplot/data/library/
|
|
26
|
-
starplot/data/library/constellation_lines_hips.json,sha256=r4br5YavirU6M5hS4v3v_ZUT5QUGUm8M1MaBYIqi-qI,18751
|
|
27
|
-
starplot/data/library/constellation_lines_inv.gpkg,sha256=izwkvwvB_3OgxWgNi6YNbKUSRJKuhk_3u3EUG3FBSqg,131072
|
|
28
|
-
starplot/data/library/constellations.gpkg,sha256=0Dpom2pirPQJ-Ue6oxKkdrUyGplUwrL6RshYEsmmoDk,155648
|
|
29
|
-
starplot/data/library/constellations_hip.fab,sha256=m2DxkYCNjlE2bSyaIkwdtE7BB4-nNsqomGX7F3EIoXU,10882
|
|
28
|
+
starplot/data/library/bigsky.0.4.0.stars.mag11.parquet,sha256=Mc7N63Naja2eJMygDtJgUUzJSc6IuvEL2iLzDzC6l00,38885096
|
|
30
29
|
starplot/data/library/de421_2001.bsp,sha256=ymkZigAd8Vgscq_DYkdR4nZ1VGD5wwPd-sxe6HiiTns,5341104
|
|
31
|
-
starplot/data/library/
|
|
32
|
-
starplot/
|
|
33
|
-
starplot/
|
|
34
|
-
starplot/
|
|
35
|
-
starplot/
|
|
36
|
-
starplot/
|
|
37
|
-
starplot/data/prep/constellations.py,sha256=bZDUrtOpWjf6mvdskF7BGdUechfCS1QyXV00wgTg2-g,2948
|
|
38
|
-
starplot/data/prep/dsos.py,sha256=X9UowAT8WdPvxoNQ04XZLqFREfr5LD_iMDBzCJR77z8,7273
|
|
39
|
-
starplot/data/prep/utils.py,sha256=cTlJu0uDnn8GvGC_QUlRgJN1f-B8IV8r5qyXdZSxYVE,417
|
|
40
|
-
starplot/models/__init__.py,sha256=nLs7icsvDYxJMS6onhjicR5pSSeOrO_YDrrktAaqlAQ,321
|
|
41
|
-
starplot/models/base.py,sha256=ENcpr3K5XeglPHBdK_iv27USYafLe6QdsxxKuXdc9uI,5081
|
|
42
|
-
starplot/models/constellation.py,sha256=DukJAJ2jjcAPRFvUX8SEYNM4IfeuTh3vr5XHHwUx0eE,2573
|
|
43
|
-
starplot/models/dso.py,sha256=ZLHOz0JSL3ZVJdd-roXkUkFk7K0JJgn1m5qDPdXsz2w,4987
|
|
44
|
-
starplot/models/geometry.py,sha256=znxcqYyhockGl1CrAHVONezZ9MFB7JFxHKI-n5aeRN8,1240
|
|
45
|
-
starplot/models/moon.py,sha256=Y8SXaaD6g_PhWQFV63kXh0XVdvaRhxLDC89QS_Yra1o,5496
|
|
30
|
+
starplot/data/library/sky.db,sha256=-YwOJZNffk4L4iVZXkptgeIs7dFI7soTMAyA1lM9SeQ,38023168
|
|
31
|
+
starplot/models/__init__.py,sha256=qi4arVatzEcR9TAbHadSbhq8xRhSb1_Br3UKNv4FP7o,330
|
|
32
|
+
starplot/models/base.py,sha256=zuHcRSs4eSyIwtyUTsAk9a73bnIW2gfWh7Ze_zt8Tq0,1623
|
|
33
|
+
starplot/models/constellation.py,sha256=qfBcWyQRL2m83wNIKiPk-4bGRblYvabxymW6TJ0nXFI,3355
|
|
34
|
+
starplot/models/dso.py,sha256=KHd5N6F2Y7EhO3RWUpmjfl_162uwNqhlC1Zqh9p0Ev4,6942
|
|
35
|
+
starplot/models/moon.py,sha256=FNIzdSMV-5ET7WtmSxWz_4n-U4IlIomQpGTbOMl7fxk,5104
|
|
46
36
|
starplot/models/objects.py,sha256=BXwUMT-zPiOYBWYV7L-TRDfPo6lsx_AIk3yxJ3qi0ck,683
|
|
47
|
-
starplot/models/planet.py,sha256=
|
|
48
|
-
starplot/models/star.py,sha256=
|
|
49
|
-
starplot/models/sun.py,sha256=
|
|
37
|
+
starplot/models/planet.py,sha256=QekNlSRw6tv5-TY8qUFvtLKxmz7ao6nv3Iwl7FiGeHY,5014
|
|
38
|
+
starplot/models/star.py,sha256=7LPlqZInBdu4D5XH2sJDiM6IJvtyVDAZvijMMH5hGAY,4693
|
|
39
|
+
starplot/models/sun.py,sha256=iUforZSmzw-o_tOKHgYslhFHUQTQxllDKMG1HdzlI98,2695
|
|
50
40
|
starplot/plotters/__init__.py,sha256=p2wpyY_jK5_zOWWbGtokw4tcHBTuILjAhuobghDvdvM,223
|
|
51
|
-
starplot/plotters/constellations.py,sha256=
|
|
52
|
-
starplot/plotters/dsos.py,sha256=
|
|
53
|
-
starplot/plotters/experimental.py,sha256=
|
|
54
|
-
starplot/plotters/milkyway.py,sha256=
|
|
55
|
-
starplot/plotters/stars.py,sha256=
|
|
56
|
-
starplot/styles/__init__.py,sha256=
|
|
57
|
-
starplot/styles/base.py,sha256=
|
|
58
|
-
starplot/styles/extensions.py,sha256=
|
|
41
|
+
starplot/plotters/constellations.py,sha256=udfyx4_hCQ3cV_Ldr_kEY1p3E-MhR2o4oJBTPikaSxo,12823
|
|
42
|
+
starplot/plotters/dsos.py,sha256=rmLV5bpC1t-TkbKeDy57at07-9xN63oYbdt0jn6Im5s,8283
|
|
43
|
+
starplot/plotters/experimental.py,sha256=P4T9jJyAnViv6k2RJpmYEY8uI-0dyd-E6NeIRUWbu6c,5909
|
|
44
|
+
starplot/plotters/milkyway.py,sha256=ofenSqpqeeg7_LlWnH1PJiiHstzD-qQL7Lk6-WlEv2M,1122
|
|
45
|
+
starplot/plotters/stars.py,sha256=npIghOtFChA6RRDffyc1el1_YwEFN4jKmTixLynqJTA,11738
|
|
46
|
+
starplot/styles/__init__.py,sha256=rtwzAylENUGIYGDPl106RGjU6e89yNURoxmPD3I_HM0,193
|
|
47
|
+
starplot/styles/base.py,sha256=fuj_hWqF5xViJMhisyRCh88YRNHCcvxIqGeBlBIm6cw,36405
|
|
48
|
+
starplot/styles/extensions.py,sha256=Mv9FTSbwEtB4IFuo_5MFDlHRYQsKdC-19uLYtmJSUuE,649
|
|
59
49
|
starplot/styles/fonts.py,sha256=wC3cHuFkBUaZM5fKpT_ExV7anrRKMJX46mjEfcSRQMU,379
|
|
60
50
|
starplot/styles/helpers.py,sha256=AGgHWaHLzJZ6jicvwPzY-p5oSHE0H8gDk1raCmeRFtg,3032
|
|
61
51
|
starplot/styles/markers.py,sha256=gEkKBXP2wL3_GA2skIwg3TP86MnmZqDtbrL3OtEq1lk,9135
|
|
62
52
|
starplot/styles/ext/antique.yml,sha256=54Qdiqg_i4poh4GUlon-JfGwDx_gQh5Eqvz7yO6tkSc,3271
|
|
63
53
|
starplot/styles/ext/blue_dark.yml,sha256=8XcD5nphKE2oR37MbhD01X3fo0TVAwQw3ptpom-Z51g,3048
|
|
64
|
-
starplot/styles/ext/
|
|
65
|
-
starplot/styles/ext/
|
|
54
|
+
starplot/styles/ext/blue_gold.yml,sha256=qDZsJ_ALUZ6lwW52bnFmLRWCpIXyif3Sbkh_XmVAjFc,2387
|
|
55
|
+
starplot/styles/ext/blue_light.yml,sha256=GHRUgCPuod1uNQ0qg86UDB_2oqUQtPwK6w52ybt5IQY,2215
|
|
56
|
+
starplot/styles/ext/blue_medium.yml,sha256=DETMuqeo4qbMsELl4xO62AGRYT10do2-wy-JZ2SmwWM,2453
|
|
66
57
|
starplot/styles/ext/cb_wong.yml,sha256=SLD6t-VJm2izS7l0RDdQXyFt8xvEdqtG6WnHMdw3Dm8,2364
|
|
67
58
|
starplot/styles/ext/color_print.yml,sha256=z9kh39yHvgUnZaBwn3ZHYXwkvhPIt2QKLnEwVyUksY0,1812
|
|
68
59
|
starplot/styles/ext/grayscale.yml,sha256=7LTv8gwW6Btojk25iFBTWESnnzXJs0P_YBIsMHdlGnA,1332
|
|
@@ -101,7 +92,8 @@ starplot/styles/fonts-library/inter/Inter-SemiBoldItalic.ttf,sha256=HhKJRT16iVz7
|
|
|
101
92
|
starplot/styles/fonts-library/inter/Inter-Thin.ttf,sha256=TDktzIrZFvD533VZq1VjsB3ZT587LbNGF_45LgAGAzk,403404
|
|
102
93
|
starplot/styles/fonts-library/inter/Inter-ThinItalic.ttf,sha256=X8Ca-UpEf65vgsAPFd-u-ernxWDmy-RtPoRSQBmldKo,410232
|
|
103
94
|
starplot/styles/fonts-library/inter/LICENSE.txt,sha256=JiSB6ERSGzJvXs0FPlm5jIstp4yO4b27boF0MF5Uk1o,4380
|
|
104
|
-
starplot-0.
|
|
105
|
-
starplot-0.
|
|
106
|
-
starplot-0.
|
|
107
|
-
starplot-0.
|
|
95
|
+
starplot-0.15.1.dist-info/entry_points.txt,sha256=Sm6jC6h_RcaMGC8saLnYmT0SdhcF9_rMeQIiHneLHyc,46
|
|
96
|
+
starplot-0.15.1.dist-info/LICENSE,sha256=jcjClHF4BQwhz-kDgia-KphO9Zxu0rCa2BbiA7j1jeU,1070
|
|
97
|
+
starplot-0.15.1.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
|
|
98
|
+
starplot-0.15.1.dist-info/METADATA,sha256=6iB3Uz4c3D7kFTxNpP9eEZRBLCQfLgVAZQW2v7ZNwSI,4258
|
|
99
|
+
starplot-0.15.1.dist-info/RECORD,,
|