kerykeion 5.0.0a7__py3-none-any.whl → 5.0.0a8__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 kerykeion might be problematic. Click here for more details.

@@ -1,6 +1,4 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <!--- This file is part of Kerykeion and is based on
3
- OpenAstro.org -->
1
+ <!--- This file is part of Kerykeion and is based on OpenAstro.org -->
4
2
  <svg
5
3
  xmlns="http://www.w3.org/2000/svg"
6
4
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -1,6 +1,4 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <!--- This file is part of Kerykeion and is based on
3
- OpenAstro.org -->
1
+ <!--- This file is part of Kerykeion and is based on OpenAstro.org -->
4
2
  <svg
5
3
  xmlns="http://www.w3.org/2000/svg"
6
4
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -1,4 +1,3 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
1
  <!--- This file is part of Kerykeion and is based on OpenAstro.org -->
3
2
  <svg
4
3
  xmlns="http://www.w3.org/2000/svg"
@@ -79,18 +79,18 @@ class AstrologicalBaseModel(SubscriptableBaseModel):
79
79
  # Common identification data
80
80
  name: str
81
81
 
82
- # Common location data
83
- city: str
84
- nation: str
85
- lng: float
86
- lat: float
87
- tz_str: str
88
-
89
- # Common time data
90
- iso_formatted_local_datetime: str
91
- iso_formatted_utc_datetime: str
92
- julian_day: float
93
- day_of_week: str
82
+ # Common location data (optional for composite charts)
83
+ city: Optional[str] = None
84
+ nation: Optional[str] = None
85
+ lng: Optional[float] = None
86
+ lat: Optional[float] = None
87
+ tz_str: Optional[str] = None
88
+
89
+ # Common time data (optional for composite charts)
90
+ iso_formatted_local_datetime: Optional[str] = None
91
+ iso_formatted_utc_datetime: Optional[str] = None
92
+ julian_day: Optional[float] = None
93
+ day_of_week: Optional[str] = None
94
94
 
95
95
  # Common configuration
96
96
  zodiac_type: ZodiacType
@@ -188,6 +188,17 @@ class AstrologicalSubjectModel(AstrologicalBaseModel):
188
188
  """
189
189
  Pydantic Model for Astrological Subject
190
190
  """
191
+ # Override base model to make location and time data required for subjects
192
+ city: str
193
+ nation: str
194
+ lng: float
195
+ lat: float
196
+ tz_str: str
197
+ iso_formatted_local_datetime: str
198
+ iso_formatted_utc_datetime: str
199
+ julian_day: float
200
+ day_of_week: str
201
+
191
202
  # Specific birth/event data
192
203
  year: int
193
204
  month: int
@@ -1,40 +1,36 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: kerykeion
3
- Version: 5.0.0a7
3
+ Version: 5.0.0a8
4
4
  Summary: A python library for astrology.
5
+ Project-URL: Homepage, https://www.kerykeion.net/
6
+ Project-URL: Repository, https://github.com/g-battaglia/kerykeion
7
+ Author-email: Giacomo Battaglia <kerykeion.astrology@gmail.com>
5
8
  License: AGPL-3.0
6
- Keywords: astrology,ephemeris,astrology library,birtchart,svg,zodiac,zodiac-sing,astronomical-algorithms,synastry,astrology-calculator
7
- Author: Giacomo Battaglia
8
- Author-email: kerykeion.astrology@gmail.com
9
- Requires-Python: >=3.9,<4.0
9
+ License-File: LICENSE
10
+ Keywords: astrology,astrology library,astrology-calculator,astronomical-algorithms,birtchart,ephemeris,svg,synastry,zodiac,zodiac-sing
10
11
  Classifier: Development Status :: 5 - Production/Stable
11
12
  Classifier: Intended Audience :: Developers
12
13
  Classifier: Intended Audience :: Information Technology
13
- Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
14
  Classifier: License :: OSI Approved :: GNU General Public License (GPL)
15
15
  Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
17
  Classifier: Programming Language :: Python :: 3.9
18
18
  Classifier: Programming Language :: Python :: 3.10
19
19
  Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Programming Language :: Python :: 3.13
22
- Classifier: Programming Language :: Python :: 3 :: Only
23
20
  Classifier: Topic :: Scientific/Engineering :: Astronomy
24
21
  Classifier: Topic :: Software Development
25
22
  Classifier: Topic :: Software Development :: Libraries
26
23
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
24
  Classifier: Typing :: Typed
28
- Requires-Dist: pydantic (>=2.5,<3.0)
29
- Requires-Dist: pyswisseph (>=2.10.3.1,<3.0.0.0)
30
- Requires-Dist: pytz (>=2024.2,<2025.0)
31
- Requires-Dist: requests (>=2.32.3,<3.0.0)
32
- Requires-Dist: requests-cache (>=1.2.1,<2.0.0)
33
- Requires-Dist: scour (>=0.38.2,<0.39.0)
34
- Requires-Dist: simple-ascii-tables (>=1.0.0,<2.0.0)
35
- Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
36
- Project-URL: Homepage, https://www.kerykeion.net/
37
- Project-URL: Repository, https://github.com/g-battaglia/kerykeion
25
+ Requires-Python: >=3.9
26
+ Requires-Dist: pydantic>=2.5
27
+ Requires-Dist: pyswisseph>=2.10.3.1
28
+ Requires-Dist: pytz>=2024.2
29
+ Requires-Dist: requests-cache>=1.2.1
30
+ Requires-Dist: requests>=2.32.3
31
+ Requires-Dist: scour>=0.38.2
32
+ Requires-Dist: simple-ascii-tables>=1.0.0
33
+ Requires-Dist: typing-extensions>=4.12.2
38
34
  Description-Content-Type: text/markdown
39
35
 
40
36
  <h1 align="center">Kerykeion</h1>
@@ -638,4 +634,3 @@ If using Kerykeion in published or academic work, please cite as follows:
638
634
  Battaglia, G. (2025). Kerykeion: A Python Library for Astrological Calculations and Chart Generation.
639
635
  https://github.com/g-battaglia/kerykeion
640
636
  ```
641
-
@@ -1,28 +1,33 @@
1
1
  kerykeion/__init__.py,sha256=18VYgL_5JcB3JwzfICoHxtQTqzwlgUXHY5j4HG2gjZQ,920
2
+ kerykeion/astrological_subject_factory.py,sha256=z8ehPW6_wT6fwayxAmST0oSdLMM1pAmHXuwncSF_A20,52340
3
+ kerykeion/composite_subject_factory.py,sha256=d3omKRw7AlJFQVrOa1nBOu9jQx7W-2UrL8V7TKyVXHg,7551
4
+ kerykeion/enums.py,sha256=nPXgP_ocsRnRno5H-yunZy3fp-hLZ9aYRaUb-2gBdvw,1199
5
+ kerykeion/ephemeris_data.py,sha256=h56Y4FCTYPcIzSnDiKNXYzEpeiqU554ccUmfXENigls,10750
6
+ kerykeion/fetch_geonames.py,sha256=e66Nh6yq9A4VjnuvVSiV1TW1IkJ9m3Q2LKPWrkOGgO0,4764
7
+ kerykeion/planetary_return_factory.py,sha256=Y3jMHsI1epuBC4N3Mto0mubVE8BIT89dBh15eOATg2Y,11449
8
+ kerykeion/relationship_score_factory.py,sha256=g0RL1sx_LsMlfX1XVDf-z2LrlZ_SAL_1C0kuOGhKhsA,8495
9
+ kerykeion/report.py,sha256=w4KNQz0ADPPXE60PX6NVTxjppZ9q_naSbgYKQiX6Epk,2827
10
+ kerykeion/transits_time_range.py,sha256=iJSkXcNKJBcfrN8gN9P0xGKLsRBwJs-mMuAtPsvUqNE,5505
11
+ kerykeion/utilities.py,sha256=mD-oPKlbpwyXv5CXOS4aS6e6u0fFYl2lf9ptUr06jxs,22217
2
12
  kerykeion/aspects/__init__.py,sha256=9kx_Rx1NJx5SM7nDCSbI79S1neZ3c-q2NvQr-S6A9PY,292
3
13
  kerykeion/aspects/aspects_utils.py,sha256=NgxdeKd9CAPbzFlLe-yr9RFumM0Cc0kfWEONYREOFJ4,3252
4
14
  kerykeion/aspects/natal_aspects.py,sha256=SfI3ferjtyV47fBG6q3q1aczc-GFOwN4P7WpyZTgPSA,7269
5
15
  kerykeion/aspects/synastry_aspects.py,sha256=4ZBiFrbyyXxclnyaEIBeLJQO3uQVnpsqvI5Kj3-ijuI,5979
6
16
  kerykeion/aspects/transits_time_range.py,sha256=E03BJYcNK3kO30EC96Ys2EaH-EDyZF2nj4C7_LcFrOk,1182
7
- kerykeion/astrological_subject_factory.py,sha256=z8ehPW6_wT6fwayxAmST0oSdLMM1pAmHXuwncSF_A20,52340
8
17
  kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
9
18
  kerykeion/charts/charts_utils.py,sha256=GCC20W4qHQXXKdUMlt72THHJxqp6ytj4X61oLONMSt4,62450
10
19
  kerykeion/charts/draw_planets.py,sha256=dbVCA4MFs7ChZKH4w1eErBiF_mluuxAD4fouBrXs-x0,17696
11
20
  kerykeion/charts/draw_planets_v2.py,sha256=ft0KjngCIfYKNGlZ4cv7apX9V6uyHetIVOxbNRzEmWU,28210
12
21
  kerykeion/charts/draw_planets_v3.py,sha256=3nrpef56qBsc0hfCOGdfCOr-61C2c5aWcRSiBcQiAuo,25811
13
22
  kerykeion/charts/kerykeion_chart_svg.py,sha256=2Xhe2XvZLdoAIRxYh1MYceencbYJKxWXRoZZ30Kgra4,95638
14
- kerykeion/charts/templates/aspect_grid_only.xml,sha256=ZiBVeToVmCA8QxYlB_cfnsAO1NNeQAnJ_6rIYkr4F58,70091
15
- kerykeion/charts/templates/chart.xml,sha256=_VCtqsH7E97JUQbvx9i5OktdRLOAhlI2Znr7mEIMK8E,79839
16
- kerykeion/charts/templates/wheel_only.xml,sha256=hSV4FYD7qLKd93jq82B9mnGoH0PKyMRaqp3jL16T9YI,71287
23
+ kerykeion/charts/templates/aspect_grid_only.xml,sha256=goTM5zXKZMZCZPxsJAk80PQvQCgo2QccJLyH4HHpguo,70052
24
+ kerykeion/charts/templates/chart.xml,sha256=ZNfA19u1objUui1vCGJTvvwdE_Sg9R9O3LNdcNHEuaI,79800
25
+ kerykeion/charts/templates/wheel_only.xml,sha256=zR2EJBy6Io69enkuRfHWZxYdyeQsXGpl9_BkY2f4L2c,71248
17
26
  kerykeion/charts/themes/classic.css,sha256=LYYYWQHNG7-vuPCq8F2EPl3LauWXVrY3Q_tpwM0klgo,4660
18
27
  kerykeion/charts/themes/dark-high-contrast.css,sha256=YW5X5-M0dz5Vy2oz-JyDNXJYHSmV83lYCodydC-KS1A,7506
19
28
  kerykeion/charts/themes/dark.css,sha256=XVspznDRNMXsFzk7hY7IB7AI58alPAV_-CgV3gCKyzg,7581
20
29
  kerykeion/charts/themes/light.css,sha256=5eyUzhVlRjG6lPHKnprLum0HuRtPIJhMBzpGfzoTjnQ,7590
21
30
  kerykeion/charts/themes/strawberry.css,sha256=UtcfRsCT-M9OZs_SoclWGZ0jDJiWvQjHTeI4M1jf7pQ,8314
22
- kerykeion/composite_subject_factory.py,sha256=d3omKRw7AlJFQVrOa1nBOu9jQx7W-2UrL8V7TKyVXHg,7551
23
- kerykeion/enums.py,sha256=nPXgP_ocsRnRno5H-yunZy3fp-hLZ9aYRaUb-2gBdvw,1199
24
- kerykeion/ephemeris_data.py,sha256=h56Y4FCTYPcIzSnDiKNXYzEpeiqU554ccUmfXENigls,10750
25
- kerykeion/fetch_geonames.py,sha256=e66Nh6yq9A4VjnuvVSiV1TW1IkJ9m3Q2LKPWrkOGgO0,4764
26
31
  kerykeion/house_comparison/__init__.py,sha256=FQutYoG1T_ljkjJ0OAFvkeH8rASwMK7ieCpH_hDFJWU,139
27
32
  kerykeion/house_comparison/house_comparison_factory.py,sha256=R3O3R786yH6W2c8cKma8P7FNXU6JGl29omRHmucNN_Q,3369
28
33
  kerykeion/house_comparison/house_comparison_models.py,sha256=R9EW5F3fiIKIm8qrwTxtXhNOGDpf1-Lh9hbM1uK83oE,1549
@@ -31,11 +36,8 @@ kerykeion/kr_types/__init__.py,sha256=jshJOccCQcYZuoOvrILRZH6imy4RBvKpFPujlNLFyG
31
36
  kerykeion/kr_types/chart_types.py,sha256=ou9mIMNrQ7vlgWW4e209z_wMa2XZa4OGvHBr-CGk_rs,2309
32
37
  kerykeion/kr_types/kerykeion_exception.py,sha256=kE1y0K0rmuz32b4K_ZppSsZ59I2Get0ZkvOkTE5HejI,314
33
38
  kerykeion/kr_types/kr_literals.py,sha256=4kJhzm_0LERiJEJks0KgDyThueMZj_F1OK2Far5SMZc,4870
34
- kerykeion/kr_types/kr_models.py,sha256=ncMzW63eTkDNMSX7JaxXpCQyA1k0yEeaNeLhAHc0y_w,8345
39
+ kerykeion/kr_types/kr_models.py,sha256=nzq8no2dBd4b529ybznF46_VUEvDj5ZdDdlLRBE0RmM,8835
35
40
  kerykeion/kr_types/settings_models.py,sha256=qKlcn-Go1dAhC7oMFY_saogNcRa4WvKSewyvsKZt2S0,16604
36
- kerykeion/planetary_return_factory.py,sha256=Y3jMHsI1epuBC4N3Mto0mubVE8BIT89dBh15eOATg2Y,11449
37
- kerykeion/relationship_score_factory.py,sha256=g0RL1sx_LsMlfX1XVDf-z2LrlZ_SAL_1C0kuOGhKhsA,8495
38
- kerykeion/report.py,sha256=w4KNQz0ADPPXE60PX6NVTxjppZ9q_naSbgYKQiX6Epk,2827
39
41
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
40
42
  kerykeion/settings/config_constants.py,sha256=R4fEe4WzRSq3BXqsnfgHj1oe_swkVMx3iGe-C_Zu0mw,1772
41
43
  kerykeion/settings/kerykeion_settings.py,sha256=umd8TZy-8ywowsd4TTkhwxSLLyX3xYj3A1zvNsTV_Y8,2955
@@ -46,10 +48,8 @@ kerykeion/settings/legacy/legacy_chart_aspects_settings.py,sha256=tO4tgPgPP07_wu
46
48
  kerykeion/settings/legacy/legacy_color_settings.py,sha256=gBUmGSNvvLzRYbdVtzwTDnMwWoh4tOCyT_9Q6aQRv_s,2620
47
49
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
48
50
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
49
- kerykeion/transits_time_range.py,sha256=iJSkXcNKJBcfrN8gN9P0xGKLsRBwJs-mMuAtPsvUqNE,5505
50
- kerykeion/utilities.py,sha256=mD-oPKlbpwyXv5CXOS4aS6e6u0fFYl2lf9ptUr06jxs,22217
51
- kerykeion-5.0.0a7.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
52
- kerykeion-5.0.0a7.dist-info/METADATA,sha256=-jFq3RQ4c6jpsieT3pOR7J6i1I3ICpma5I5aBh8M5VU,25398
53
- kerykeion-5.0.0a7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
54
- kerykeion-5.0.0a7.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
55
- kerykeion-5.0.0a7.dist-info/RECORD,,
51
+ kerykeion-5.0.0a8.dist-info/METADATA,sha256=XRm8bm5JWbAt-t0A4LUUOedawGjeACYyYBQQ_oGqLlc,25100
52
+ kerykeion-5.0.0a8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
53
+ kerykeion-5.0.0a8.dist-info/entry_points.txt,sha256=j9J6dg4czXFgM3LDOxoWFl8UDU4LLe2bD_U0RgpyLGA,50
54
+ kerykeion-5.0.0a8.dist-info/licenses/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
55
+ kerykeion-5.0.0a8.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ create-docs = scripts.docs:main
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- create-docs=scripts.docs:main
3
-