starplot 0.16.4__py2.py3-none-any.whl → 0.17.0__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.
Files changed (37) hide show
  1. starplot/__init__.py +28 -2
  2. starplot/base.py +36 -56
  3. starplot/config.py +16 -0
  4. starplot/data/constellations.py +5 -676
  5. starplot/data/dsos.py +7 -23
  6. starplot/data/library/bigsky.0.4.0.stars.mag11.parquet +0 -0
  7. starplot/data/library/sky.db +0 -0
  8. starplot/data/stars.py +12 -2
  9. starplot/data/translations.py +161 -0
  10. starplot/geometry.py +7 -6
  11. starplot/horizon.py +9 -8
  12. starplot/map.py +1 -1
  13. starplot/models/__init__.py +19 -7
  14. starplot/models/base.py +1 -1
  15. starplot/models/comet.py +332 -0
  16. starplot/models/constellation.py +10 -0
  17. starplot/models/dso.py +24 -0
  18. starplot/{optics.py → models/optics.py} +4 -4
  19. starplot/models/satellite.py +158 -0
  20. starplot/models/star.py +10 -0
  21. starplot/optic.py +10 -9
  22. starplot/plotters/__init__.py +1 -0
  23. starplot/plotters/arrow.py +162 -0
  24. starplot/plotters/constellations.py +15 -51
  25. starplot/plotters/dsos.py +8 -14
  26. starplot/plotters/experimental.py +559 -6
  27. starplot/plotters/legend.py +5 -0
  28. starplot/plotters/stars.py +7 -16
  29. starplot/styles/base.py +20 -1
  30. starplot/styles/extensions.py +10 -1
  31. starplot/zenith.py +4 -1
  32. {starplot-0.16.4.dist-info → starplot-0.17.0.dist-info}/METADATA +19 -15
  33. {starplot-0.16.4.dist-info → starplot-0.17.0.dist-info}/RECORD +37 -33
  34. /starplot/{observer.py → models/observer.py} +0 -0
  35. {starplot-0.16.4.dist-info → starplot-0.17.0.dist-info}/WHEEL +0 -0
  36. {starplot-0.16.4.dist-info → starplot-0.17.0.dist-info}/entry_points.txt +0 -0
  37. {starplot-0.16.4.dist-info → starplot-0.17.0.dist-info}/licenses/LICENSE +0 -0
starplot/styles/base.py CHANGED
@@ -676,9 +676,15 @@ class LegendStyle(BaseStyle):
676
676
  border_padding: float = 1.28
677
677
  """Padding between legend entries and the legend border"""
678
678
 
679
+ font_name: str = "Inter"
680
+ """Font name for legend labels"""
681
+
679
682
  font_size: int = 23
680
683
  """Font size of the legend labels, in points"""
681
684
 
685
+ font_weight: FontWeightEnum = FontWeightEnum.NORMAL
686
+ """Font weight of the legend labels"""
687
+
682
688
  font_color: ColorStr = ColorStr("#000")
683
689
  """Font color for legend labels"""
684
690
 
@@ -699,7 +705,11 @@ class LegendStyle(BaseStyle):
699
705
  loc=self.location,
700
706
  ncols=self.num_columns,
701
707
  framealpha=self.background_alpha,
702
- fontsize=self.font_size * scale,
708
+ prop={
709
+ "family": self.font_name,
710
+ "weight": self.font_weight,
711
+ "size": self.font_size * scale,
712
+ },
703
713
  labelcolor=self.font_color.as_hex(),
704
714
  borderpad=self.border_padding,
705
715
  labelspacing=self.label_padding,
@@ -1151,6 +1161,15 @@ class PlotStyle(BaseStyle):
1151
1161
  )
1152
1162
  """Styling for the zenith marker"""
1153
1163
 
1164
+ optic_fov: PolygonStyle = PolygonStyle(
1165
+ fill_color=None,
1166
+ edge_color="red",
1167
+ line_style=[1, [2, 3]],
1168
+ edge_width=3,
1169
+ zorder=-1000,
1170
+ )
1171
+ """Styling for optic fields of view"""
1172
+
1154
1173
  def get_dso_style(self, dso_type: DsoType):
1155
1174
  """Returns the style for a DSO type"""
1156
1175
  styles_by_type = {
@@ -30,7 +30,16 @@ CB_WONG = load("cb_wong.yml")
30
30
  COLOR_PRINT = load("color_print.yml")
31
31
 
32
32
  # Horizon Background Gradient Presets
33
- GRADIENTS = load("gradient_presets.yml")
33
+ # GRADIENTS = load("gradient_presets.yml")
34
+
35
+ GRADIENT_DAYLIGHT = {
36
+ "background_color": [
37
+ (0.0, "#7abfff"),
38
+ (0.1, "#7abfff"),
39
+ (0.9, "#568feb"),
40
+ (0.9, "#3f7ee3"),
41
+ ]
42
+ }
34
43
 
35
44
  GRADIENT_BOLD_SUNSET = {
36
45
  "background_color": [
starplot/zenith.py CHANGED
@@ -2,8 +2,9 @@ import numpy as np
2
2
  from matplotlib import path, patches
3
3
 
4
4
  from starplot.coordinates import CoordinateSystem
5
+ from starplot.data.translations import translate
5
6
  from starplot.map import MapPlot
6
- from starplot.observer import Observer
7
+ from starplot.models.observer import Observer
7
8
  from starplot.projections import Stereographic
8
9
  from starplot.styles import LabelStyle, PlotStyle, PathStyle, GradientDirection
9
10
  from starplot.styles.helpers import use_style
@@ -109,6 +110,8 @@ class ZenithPlot(MapPlot):
109
110
  if not labels:
110
111
  return
111
112
 
113
+ labels = [translate(label, self.language) for label in labels]
114
+
112
115
  label_ax_coords = [
113
116
  (0.5, 0.95), # north
114
117
  (0.045, 0.5), # east
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: starplot
3
- Version: 0.16.4
3
+ Version: 0.17.0
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>
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
13
14
  License-File: LICENSE
14
15
  Requires-Dist: matplotlib >= 3.8.0
15
16
  Requires-Dist: numpy >= 1.26.2
@@ -31,7 +32,7 @@ Project-URL: Documentation, https://starplot.dev
31
32
  Project-URL: Home, https://starplot.dev
32
33
  Project-URL: Source, https://github.com/steveberardi/starplot
33
34
 
34
- # <img src="https://raw.githubusercontent.com/steveberardi/starplot/main/docs/images/favicon.svg" width="48" style="vertical-align:middle"> Starplot
35
+ # <img src="https://raw.githubusercontent.com/steveberardi/starplot/main/docs/images/logo.svg" width="48" style="vertical-align:middle"> Starplot
35
36
  ![Python](https://img.shields.io/pypi/pyversions/starplot?style=for-the-badge&color=6388b0)
36
37
  ![PyPI](https://img.shields.io/pypi/v/starplot?style=for-the-badge&color=57a8a8)
37
38
  ![License](https://img.shields.io/github/license/steveberardi/starplot?style=for-the-badge&color=8b63b0)
@@ -39,18 +40,20 @@ Project-URL: Source, https://github.com/steveberardi/starplot
39
40
 
40
41
  **Starplot** is a Python library for creating star charts and maps of the sky.
41
42
 
42
- - **Zenith Plots** - shows the entire sky at a specific time and place
43
- - 🗺️ **Map Plots** - including many map projections
44
- - 🌃 **Horizon Plots** - shows the horizon at a specific time and place
45
- - 🔭 **Optic Plots** - shows what you'll see through an optic (e.g. telescope) at a specific time and place
43
+ - 🗺️ **Maps** - including 10+ customizable projections
44
+ - **Zenith Charts** - shows the entire sky at a specific time and place
45
+ - 🌃 **Horizon Charts** - shows the horizon at a specific time and place
46
+ - 🔭 **Optic Simulations** - shows what you'll see through an optic (e.g. telescope) at a specific time and place
46
47
  - 🪐 **Planets and Deep Sky Objects (DSOs)** - more than 14,000 objects built-in
47
- - 🎨 **Custom Styles** - for all objects
48
+ - ☄️ **Comets and Satellites** - easy trajectory plotting
49
+ - 🎨 **Custom Styles** - for all objects and with 8+ built-in themes
48
50
  - 📥 **Export** - png, svg, jpeg
49
51
  - 🚀 **Data Backend** - powered by DuckDB + Ibis for fast object lookup
50
- - 🧭 **Label Collision Avoidance**
52
+ - 🧭 **Label Collision Avoidance** - ensuring all labels are readable
53
+ - 🌐 **Localization** - label translations for French and Chinese
51
54
 
52
55
  ## Examples
53
- *Zenith plot of the stars from a specific time/location:*
56
+ *Zenith chart of the stars from a specific time/location:*
54
57
  ![starchart-blue](https://starplot.dev/images/examples/star_chart_basic.png)
55
58
 
56
59
  *Map around the constellation Orion:*
@@ -99,25 +102,26 @@ p.export("starchart.png")
99
102
 
100
103
 
101
104
  ## Demo
102
- For a demo of Starplot's zenith plots, check out:
105
+ For a demo of Starplot's zenith charts, check out:
103
106
 
104
107
  [Sky Atlas - Star Chart Creator](https://skyatlas.app/star-charts/)
105
108
 
106
- ## Discord
109
+ ## Getting Help / Updates
107
110
 
108
- Chat with other starplotters on our Discord server:
109
-
110
- https://discord.gg/WewJJjshFu
111
+ - Chat with other starplotters on our [Discord server](https://discord.gg/WewJJjshFu)
112
+ - [Follow us on Bluesky](https://bsky.app/profile/starplot.dev)
113
+ - [Join our newsletter](https://buttondown.com/starplot)
114
+ - [See more examples at Starplotting.com](https://starplotting.com/)
111
115
 
112
116
  ## Contributing
113
117
 
114
118
  Contributing to Starplot is welcome and very much appreciated! Please see [here](CONTRIBUTING.md) for details.
115
119
 
116
120
  ## Coming Soon
121
+ - 📡 Custom data catalogs
117
122
  - 🧮 Coordinate system helpers
118
123
  - 🌑 Planet moons
119
124
  - ✴️ Custom markers
120
- - ☄️ Comet model
121
125
  - 😄 🔭 Clear skies
122
126
 
123
127
  See more details on the [Public Roadmap](https://trello.com/b/sUksygn4/starplot-roadmap)
@@ -1,55 +1,59 @@
1
- starplot/__init__.py,sha256=7kyOklMmsfZui6mp_6-aLT0pTNpd8xtGGxv8VHUr-hA,726
2
- starplot/base.py,sha256=o8IEYvpRj_79atDlNrxblotVlgIt4pRBXzVADUzgtY0,43166
1
+ starplot/__init__.py,sha256=P0oA2tdkiS4-Ob1exDbbaFOhgnGLUgoYRQIPJLz8uLE,1256
2
+ starplot/base.py,sha256=eA0LBg1ZzUgnjHVg3nZ_8xOUaBv6Su0cv9CFtY5VZso,42615
3
3
  starplot/callables.py,sha256=_zDGCAJTqqNLvCtcIt4PVEe2L0Ggvl6pj-7ZFI-0zqI,4043
4
4
  starplot/cli.py,sha256=ZcOtEAzwX7pLtLHxwDhIVb8sStZjSZr9Er9vJ4cc1J4,718
5
- starplot/config.py,sha256=GoyCvYqle-eRD83cFkpttAUj6PUTBTFoD3yKMmIQpRk,2100
5
+ starplot/config.py,sha256=8NZ2Sc_0-1Qo3fgG6ipSfET_C23stve5cEi_Xos64ao,2761
6
6
  starplot/coordinates.py,sha256=7LDz32VTKa8H-4F67-XvzmjpcTVojZwYVJzXZkBaZ3U,136
7
7
  starplot/geod.py,sha256=pVnDr-yxGjOIXwKCknbtCZiRle5IqRnqpY43s0PMnmA,2574
8
- starplot/geometry.py,sha256=eNrSZX-axBpGEGVnmMeIHgpf7qTiZPVKtg85SkzK1yU,6630
9
- starplot/horizon.py,sha256=TZC-P_v1Fl-tlyckjabzmFLHDDJJuQrxYdNXx8LNerY,19974
10
- starplot/map.py,sha256=mU5oD-JQ9IbEvfdReeT3sdwsYOoqzeFMxa_Rd-6_cjY,19137
8
+ starplot/geometry.py,sha256=qU8OVIchzGe7-F7X6cynVaZFknOuPeYRAjRfaZjRc1Y,6715
9
+ starplot/horizon.py,sha256=32tV60Iy5Jga1K6rErCSevMT37v8Z-Ky_GfwVCw_0eM,20099
10
+ starplot/map.py,sha256=YP5c1qR827LUwkI9B44RyVpBBQ4YzTWXI5vzmr859zo,19144
11
11
  starplot/mixins.py,sha256=ZZBVg1Ad3xnbyLskCEhpDcd9Jmb_2_jT8hUiiCbU658,12268
12
- starplot/observer.py,sha256=R15X0DZhDSFQ06mf4Tv-q7Qf-o1GR3CSz-9H_CBDFg8,1825
13
- starplot/optic.py,sha256=i6YSV_UKEuBsSqVgde4ofw9fFnt5j8oYXypsyHdhTNU,17136
14
- starplot/optics.py,sha256=v94Ff8bIruVBrME7lzwORlayadpoFIGQsAK0sFlx43Y,9314
12
+ starplot/optic.py,sha256=YH94czYTaKX_Auq8T8XA8zZUfrjws6EhAGBYKMoqPQ0,17105
15
13
  starplot/profile.py,sha256=V5LOZFDdnGo-P8ikWvV3jmUVJIKO3gd4H2bjBlk7aUM,300
16
14
  starplot/projections.py,sha256=6mj8uJkWE-79giXF-OVS8ixUbbojOHuwI51C-ovHyIo,5101
17
15
  starplot/utils.py,sha256=49m8QXJl188Pgpef_82gyykly7ZjfAuHVEcSA5QFITA,3720
18
16
  starplot/warnings.py,sha256=uKvGSAVpWKZIHMKxxegO5owFJnKvBYLyq3pJatD0qQ4,594
19
- starplot/zenith.py,sha256=Hb_Dq4-xVIIGc1iCmtdFoOLbPX1BL9LKQ3T7TcilqmQ,6557
17
+ starplot/zenith.py,sha256=RBbUqvQd6t5xSRnGBdG22phbibnIl32KiHxq5InD-sI,6685
20
18
  starplot/data/__init__.py,sha256=caxXwutqzBf9XeVMuiK_R-RaM-Tfqbj-sKcHergsPOw,299
21
19
  starplot/data/bigsky.py,sha256=-LAS8OHGj2FwpaRxlfhIRlOUV9WwXQgJuIJQyfY9d4Q,2831
22
20
  starplot/data/constellation_lines.py,sha256=RLyFSoxGRL7kj9gGT4DDUubClKZEDu5wGUMG3PlpYfY,19344
23
21
  starplot/data/constellation_stars.py,sha256=l2GeyJWuVtzH-MIw1oGR6jeMBvfqX-q-S2V_ilcEZG8,38221
24
- starplot/data/constellations.py,sha256=uSPBnste3NKXUn_7g7g16rcFNhTmP38AKaxmVHwzos4,15730
22
+ starplot/data/constellations.py,sha256=q3FCf9Y8ZE3viwH4fFrALewJMQylnSLpStV2KONCbbU,1382
25
23
  starplot/data/db.py,sha256=bus3I-3LA-tYRnVASZ0ar_UeFEdEuqCxdMDowLRTu2g,398
26
- starplot/data/dsos.py,sha256=Hfnsa2Tz9gfgCMu8SRuN5hEwKXz9u56AbTLH4rNFOaI,1504
24
+ starplot/data/dsos.py,sha256=cYr1FyAPk07yqb4Y82JI-XP4od1cCoYQJGh_O3-BlZ8,1168
27
25
  starplot/data/ecliptic.py,sha256=Qre9YdFbTC9mAx-vd2C0Ou4CsnRehIScnTpmEUDDYcM,4638
28
- starplot/data/stars.py,sha256=x22ayry_r1dNwR4GFKU3GuIB1VKG_LJGQUTltKfqILI,2759
26
+ starplot/data/stars.py,sha256=1dSKHbLzLdu4xRggiQZ7rZO4Jkzwd6nRiBlvN_j9VvI,3038
27
+ starplot/data/translations.py,sha256=pJsCmtj1G6tkXFWXFi2OYJUdYpZ35O6DDBEUBM7T_TM,5141
29
28
  starplot/data/utils.py,sha256=RPk3bnfL-KtjMk1VQygDD27INz_gEya_B1hu7X4K8hU,772
30
- starplot/data/library/bigsky.0.4.0.stars.mag11.parquet,sha256=l1whWt41bkXslqVF2n7qeFrvja3sqO8pbPJaNqTnECE,38883485
29
+ starplot/data/library/bigsky.0.4.0.stars.mag11.parquet,sha256=U-dwL1N9bqlN1_t40-sHVH3Uo3YxjI9oMPAAs9_dKw4,38883615
31
30
  starplot/data/library/de421_2001.bsp,sha256=ymkZigAd8Vgscq_DYkdR4nZ1VGD5wwPd-sxe6HiiTns,5341104
32
- starplot/data/library/sky.db,sha256=zZbUs1tLrR00BjM7ZhBMaZIw8Gd2mDRjDQ6nBdxmD9o,38023168
33
- starplot/models/__init__.py,sha256=qi4arVatzEcR9TAbHadSbhq8xRhSb1_Br3UKNv4FP7o,330
34
- starplot/models/base.py,sha256=sQ_qTUOUfGxtgLdJVnSbMG328_d_AO5GSIcnC-e0m80,2681
35
- starplot/models/constellation.py,sha256=ayIGfafFs2eymWHlFdDgZPJkx115x_avPC1egqVZWnI,3220
36
- starplot/models/dso.py,sha256=qfjbw5gJcd-OTEYLken7kANnyIoVcrFltsGwuiSg9Fs,7385
31
+ starplot/data/library/sky.db,sha256=XP2mxyFYSRQ2rAgBJD1LPQDYei4Xf6KE7rfni-FTi4w,38285312
32
+ starplot/models/__init__.py,sha256=qQqlYH5vJQrs017gd7hOg4J1EDCav73cLUJWn72ooBM,414
33
+ starplot/models/base.py,sha256=0xLSDOY7EGYR0uobhjaF0esQEYjj7SUkXof6mk6Ko-Q,2686
34
+ starplot/models/comet.py,sha256=AIz9cwtLo2JH9hCHbfucWONcgnnQ1M6w6CZ7eaKETFA,11176
35
+ starplot/models/constellation.py,sha256=lv7nZkheTeEwIn0l-jebcr_sohU7dIEDPXzcYuGK1RA,3481
36
+ starplot/models/dso.py,sha256=VBVK1Yui8BeuUmm8M_wZAAyDwzRD454lU1BFPNcvBms,7896
37
37
  starplot/models/moon.py,sha256=dW0N70DFx4yO9Zawfo96Z3LZxzLTMZDDpBHrP9rqfa0,4546
38
38
  starplot/models/objects.py,sha256=BXwUMT-zPiOYBWYV7L-TRDfPo6lsx_AIk3yxJ3qi0ck,683
39
+ starplot/models/observer.py,sha256=R15X0DZhDSFQ06mf4Tv-q7Qf-o1GR3CSz-9H_CBDFg8,1825
40
+ starplot/models/optics.py,sha256=6quf3Cxga5pjTunchtGe2OKCU6hgsm5yg7NfYWIfoNA,9314
39
41
  starplot/models/planet.py,sha256=TyPGMQnlq4NwMXNSRrIgbpL4rAWTdKyNeo5jpSR0Crg,4661
40
- starplot/models/star.py,sha256=gw36P1BB9qq4IfvS4TqcZsmltKeNWvcnw87wSDxmE1w,4555
42
+ starplot/models/satellite.py,sha256=sYBPLqr6t_2bR2U6TmoIqFWwuP53TSI2Rm3_H40zXcI,5148
43
+ starplot/models/star.py,sha256=9yghVtnuCvXmpiIvzhtku-LW4QAOI8VAXJvgYOAz54o,4776
41
44
  starplot/models/sun.py,sha256=3EaRJclmYX-jhSJav5nGCazH-9_YHT6Qr2irDSsC63I,2342
42
- starplot/plotters/__init__.py,sha256=qxfzgsrOxu3Xvuh7Ucbq_ZFWvohbc4iGqOCEBFZ31oo,337
43
- starplot/plotters/constellations.py,sha256=QfNk6Zv61NR5XmpK8bGXTHhfST5J2pXPqfdnI3BNSyE,13476
44
- starplot/plotters/dsos.py,sha256=HxURv4a0UZyT9tp8vbLUXbx6ZyX5AUz5cSajV3A8G4Y,9146
45
- starplot/plotters/experimental.py,sha256=XtWtyoiPmR2heVGcoMM6zOMQ0uAQzGYpg-E6-mRgKI8,5916
45
+ starplot/plotters/__init__.py,sha256=JoFv2TG0-l9lDK5KD-xMSp0B0taMPgJCToK6Ap0yov4,388
46
+ starplot/plotters/arrow.py,sha256=18RsH8iDgo-OJGllDbtE13-QTWXSslUB01jwVkp3DRA,4871
47
+ starplot/plotters/constellations.py,sha256=GTUFSCzXb2RXp71i1l6gT5XsU5uAiUB6FM4QXWR4jss,12265
48
+ starplot/plotters/dsos.py,sha256=i5zsXUjVv_ywWiqoTrVy1mbxwreFcUGwODJu-oDU_qc,8957
49
+ starplot/plotters/experimental.py,sha256=UAOdtBxnqkAZU_nBbxa3095TRGUB_r70SW9vHKysXsA,16002
46
50
  starplot/plotters/gradients.py,sha256=ZonNeIEmbcZZWjFtlPahGtGCgeTCeimp84PZnqj8dXY,5781
47
- starplot/plotters/legend.py,sha256=RMdAL1t1PcfYzcizkHl_lksK2Ql-BDALNdxz2bXgyew,8573
51
+ starplot/plotters/legend.py,sha256=JlErRgFdpy4HkFGcw0tQMP_fu1QVete_Fdx-3lHgPGA,8720
48
52
  starplot/plotters/milkyway.py,sha256=WpWwHefSHE2bDI_vTve-tbma31kk1CIGOp1ukLy-BiE,1189
49
- starplot/plotters/stars.py,sha256=j-wI2fCvsMwCCUyswmqHxYWRQUu877rKGKNdr7LwnDY,12507
53
+ starplot/plotters/stars.py,sha256=8DG2stKMS4-9Dw21Wdk0L7tXFmYJTF9uLtRuqlQPoBQ,12114
50
54
  starplot/styles/__init__.py,sha256=rtwzAylENUGIYGDPl106RGjU6e89yNURoxmPD3I_HM0,193
51
- starplot/styles/base.py,sha256=W4lT7J3QPTNUTiTdRhOjiCxBzOt7BRgN7MQ8RDO4SBY,39044
52
- starplot/styles/extensions.py,sha256=GFM_s5YRXSdhj77pcCUX52RdcdfZqRsnyZx6SfR2Sss,2506
55
+ starplot/styles/base.py,sha256=7uF4VDfuTCXVBqVRYn6sFmqgQkeHZ5_Qu-uasDu0Oyg,39556
56
+ starplot/styles/extensions.py,sha256=cxtPcUcdgH0vhknSGVLGVrTjLG1OBAoGWpw-ymz6L08,2669
53
57
  starplot/styles/fonts.py,sha256=wC3cHuFkBUaZM5fKpT_ExV7anrRKMJX46mjEfcSRQMU,379
54
58
  starplot/styles/helpers.py,sha256=AGgHWaHLzJZ6jicvwPzY-p5oSHE0H8gDk1raCmeRFtg,3032
55
59
  starplot/styles/markers.py,sha256=gEkKBXP2wL3_GA2skIwg3TP86MnmZqDtbrL3OtEq1lk,9135
@@ -98,8 +102,8 @@ starplot/styles/fonts-library/inter/Inter-SemiBoldItalic.ttf,sha256=HhKJRT16iVz7
98
102
  starplot/styles/fonts-library/inter/Inter-Thin.ttf,sha256=TDktzIrZFvD533VZq1VjsB3ZT587LbNGF_45LgAGAzk,403404
99
103
  starplot/styles/fonts-library/inter/Inter-ThinItalic.ttf,sha256=X8Ca-UpEf65vgsAPFd-u-ernxWDmy-RtPoRSQBmldKo,410232
100
104
  starplot/styles/fonts-library/inter/LICENSE.txt,sha256=JiSB6ERSGzJvXs0FPlm5jIstp4yO4b27boF0MF5Uk1o,4380
101
- starplot-0.16.4.dist-info/entry_points.txt,sha256=Sm6jC6h_RcaMGC8saLnYmT0SdhcF9_rMeQIiHneLHyc,46
102
- starplot-0.16.4.dist-info/licenses/LICENSE,sha256=jcjClHF4BQwhz-kDgia-KphO9Zxu0rCa2BbiA7j1jeU,1070
103
- starplot-0.16.4.dist-info/WHEEL,sha256=Dyt6SBfaasWElUrURkknVFAZDHSTwxg3PaTza7RSbkY,100
104
- starplot-0.16.4.dist-info/METADATA,sha256=oW1k8ymYFe3vSIBbif-6uXil-Eog6S25lEcgcUrrpx8,4336
105
- starplot-0.16.4.dist-info/RECORD,,
105
+ starplot-0.17.0.dist-info/entry_points.txt,sha256=Sm6jC6h_RcaMGC8saLnYmT0SdhcF9_rMeQIiHneLHyc,46
106
+ starplot-0.17.0.dist-info/licenses/LICENSE,sha256=jcjClHF4BQwhz-kDgia-KphO9Zxu0rCa2BbiA7j1jeU,1070
107
+ starplot-0.17.0.dist-info/WHEEL,sha256=Dyt6SBfaasWElUrURkknVFAZDHSTwxg3PaTza7RSbkY,100
108
+ starplot-0.17.0.dist-info/METADATA,sha256=yoSQoyiYNQ2E8CNdH0B9HuzK9Q_kR_iqv5asnsRJ0kA,4805
109
+ starplot-0.17.0.dist-info/RECORD,,
File without changes