python-date-calc 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.
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-date-calc
3
+ Version: 0.0.1
4
+ Summary: A date calculation library written in Python.
5
+ Author: Ben Thompson
6
+ License-Expression: MIT
7
+ Project-URL: Repository, https://github.com/ben-thomp/python-date-calc
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+
13
+ # python-date-calc
14
+
15
+ A date calculation library written in Python.
@@ -0,0 +1,3 @@
1
+ # python-date-calc
2
+
3
+ A date calculation library written in Python.
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "python-date-calc"
7
+ version = "0.0.1"
8
+ description = "A date calculation library written in Python."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "Ben Thompson" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [project.urls]
21
+ Repository = "https://github.com/ben-thomp/python-date-calc"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """python-date-calc: A date calculation library written in Python."""
2
+
3
+ from importlib.metadata import version
4
+
5
+ __version__ = version("python-date-calc")
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-date-calc
3
+ Version: 0.0.1
4
+ Summary: A date calculation library written in Python.
5
+ Author: Ben Thompson
6
+ License-Expression: MIT
7
+ Project-URL: Repository, https://github.com/ben-thomp/python-date-calc
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+
13
+ # python-date-calc
14
+
15
+ A date calculation library written in Python.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/python_date_calc/__init__.py
4
+ src/python_date_calc.egg-info/PKG-INFO
5
+ src/python_date_calc.egg-info/SOURCES.txt
6
+ src/python_date_calc.egg-info/dependency_links.txt
7
+ src/python_date_calc.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ python_date_calc