python-excel-csv 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-excel-csv
3
+ Version: 0.0.1
4
+ Summary: A Python library for Excel and CSV file operations.
5
+ Author: Ben Thompson
6
+ License-Expression: MIT
7
+ Project-URL: Repository, https://github.com/ben-thomp/python-excel-csv
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-excel-csv
14
+
15
+ A Python library for Excel and CSV file operations.
@@ -0,0 +1,3 @@
1
+ # python-excel-csv
2
+
3
+ A Python library for Excel and CSV file operations.
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "python-excel-csv"
7
+ version = "0.0.1"
8
+ description = "A Python library for Excel and CSV file operations."
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-excel-csv"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """python-excel-csv: A Python library for Excel and CSV file operations."""
2
+
3
+ from importlib.metadata import version
4
+
5
+ __version__ = version("python-excel-csv")
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-excel-csv
3
+ Version: 0.0.1
4
+ Summary: A Python library for Excel and CSV file operations.
5
+ Author: Ben Thompson
6
+ License-Expression: MIT
7
+ Project-URL: Repository, https://github.com/ben-thomp/python-excel-csv
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-excel-csv
14
+
15
+ A Python library for Excel and CSV file operations.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/python_excel_csv/__init__.py
4
+ src/python_excel_csv.egg-info/PKG-INFO
5
+ src/python_excel_csv.egg-info/SOURCES.txt
6
+ src/python_excel_csv.egg-info/dependency_links.txt
7
+ src/python_excel_csv.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ python_excel_csv