excelize 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.
excelize-0.0.1/LICENSE ADDED
File without changes
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: excelize
3
+ Version: 0.0.1
4
+ Summary: A Python library for reading and writing Excel files
5
+ Author: xuri
6
+ Author-email: xuri.me@gmail.com
7
+ License: BSD
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+
12
+ ## Official Excelize Library
13
+
14
+ Working in progress
@@ -0,0 +1,3 @@
1
+ ## Official Excelize Library
2
+
3
+ Working in progress
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: excelize
3
+ Version: 0.0.1
4
+ Summary: A Python library for reading and writing Excel files
5
+ Author: xuri
6
+ Author-email: xuri.me@gmail.com
7
+ License: BSD
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+
12
+ ## Official Excelize Library
13
+
14
+ Working in progress
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ excelize.egg-info/PKG-INFO
5
+ excelize.egg-info/SOURCES.txt
6
+ excelize.egg-info/dependency_links.txt
7
+ excelize.egg-info/not-zip-safe
8
+ excelize.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from __future__ import annotations
2
+ from setuptools import setup
3
+
4
+ setup(
5
+ name="excelize",
6
+ version="0.0.1",
7
+ license="BSD",
8
+ description="A Python library for reading and writing Excel files",
9
+ long_description=open("README.md").read(),
10
+ long_description_content_type="text/markdown",
11
+ author="xuri",
12
+ author_email="xuri.me@gmail.com",
13
+ zip_safe=False,
14
+ include_package_data=True,
15
+ python_requires='>=3.7',
16
+ )