bazikit 0.0.1__tar.gz

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.
bazikit-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: bazikit
3
+ Version: 0.0.1
4
+ Summary: Open-source Bazi (Four Pillars) calculation engine for AI agents & developers. Under active development.
5
+ Author: FateMCP
6
+ License: MIT
7
+ Project-URL: Homepage, https://fatemcp.com
8
+ Project-URL: Repository, https://github.com/fatemcp/bazikit
9
+ Keywords: bazi,four pillars,chinese astrology,mcp,ai agents
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Description-Content-Type: text/markdown
14
+
15
+ # BaziKit
16
+
17
+ Open-source Bazi (Four Pillars of Destiny) calculation engine for AI agents & developers.
18
+
19
+ ## Status
20
+
21
+ 🚧 Under active development. Initial release coming soon.
22
+
23
+ ## Features (planned)
24
+
25
+ - Four Pillars chart calculation
26
+ - Ten Gods & hidden stems
27
+ - Shensha (Divine Stars)
28
+ - Nayin
29
+ - Branch relations
30
+ - Da Yun / Liu Nian
31
+ - Cheng Gu (Bone Weight)
32
+ - Day master readings
33
+ - Zodiac yearly fortune
34
+ - MCP-native support
35
+
36
+ ## License
37
+
38
+ MIT
@@ -0,0 +1,24 @@
1
+ # BaziKit
2
+
3
+ Open-source Bazi (Four Pillars of Destiny) calculation engine for AI agents & developers.
4
+
5
+ ## Status
6
+
7
+ 🚧 Under active development. Initial release coming soon.
8
+
9
+ ## Features (planned)
10
+
11
+ - Four Pillars chart calculation
12
+ - Ten Gods & hidden stems
13
+ - Shensha (Divine Stars)
14
+ - Nayin
15
+ - Branch relations
16
+ - Da Yun / Liu Nian
17
+ - Cheng Gu (Bone Weight)
18
+ - Day master readings
19
+ - Zodiac yearly fortune
20
+ - MCP-native support
21
+
22
+ ## License
23
+
24
+ MIT
@@ -0,0 +1,7 @@
1
+ """
2
+ BaziKit - Open-source Bazi (Four Pillars) calculation engine.
3
+
4
+ Under active development. Coming soon.
5
+ """
6
+
7
+ __version__ = "0.0.1"
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: bazikit
3
+ Version: 0.0.1
4
+ Summary: Open-source Bazi (Four Pillars) calculation engine for AI agents & developers. Under active development.
5
+ Author: FateMCP
6
+ License: MIT
7
+ Project-URL: Homepage, https://fatemcp.com
8
+ Project-URL: Repository, https://github.com/fatemcp/bazikit
9
+ Keywords: bazi,four pillars,chinese astrology,mcp,ai agents
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Description-Content-Type: text/markdown
14
+
15
+ # BaziKit
16
+
17
+ Open-source Bazi (Four Pillars of Destiny) calculation engine for AI agents & developers.
18
+
19
+ ## Status
20
+
21
+ 🚧 Under active development. Initial release coming soon.
22
+
23
+ ## Features (planned)
24
+
25
+ - Four Pillars chart calculation
26
+ - Ten Gods & hidden stems
27
+ - Shensha (Divine Stars)
28
+ - Nayin
29
+ - Branch relations
30
+ - Da Yun / Liu Nian
31
+ - Cheng Gu (Bone Weight)
32
+ - Day master readings
33
+ - Zodiac yearly fortune
34
+ - MCP-native support
35
+
36
+ ## License
37
+
38
+ MIT
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ bazikit/__init__.py
4
+ bazikit.egg-info/PKG-INFO
5
+ bazikit.egg-info/SOURCES.txt
6
+ bazikit.egg-info/dependency_links.txt
7
+ bazikit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ bazikit
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "bazikit"
7
+ version = "0.0.1"
8
+ description = "Open-source Bazi (Four Pillars) calculation engine for AI agents & developers. Under active development."
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [{name = "FateMCP"}]
12
+ keywords = ["bazi", "four pillars", "chinese astrology", "mcp", "ai agents"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://fatemcp.com"
21
+ Repository = "https://github.com/fatemcp/bazikit"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+