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 +0 -0
- excelize-0.0.1/PKG-INFO +14 -0
- excelize-0.0.1/README.md +3 -0
- excelize-0.0.1/excelize.egg-info/PKG-INFO +14 -0
- excelize-0.0.1/excelize.egg-info/SOURCES.txt +8 -0
- excelize-0.0.1/excelize.egg-info/dependency_links.txt +1 -0
- excelize-0.0.1/excelize.egg-info/not-zip-safe +1 -0
- excelize-0.0.1/excelize.egg-info/top_level.txt +1 -0
- excelize-0.0.1/setup.cfg +4 -0
- excelize-0.0.1/setup.py +16 -0
excelize-0.0.1/LICENSE
ADDED
|
File without changes
|
excelize-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
excelize-0.0.1/README.md
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
excelize-0.0.1/setup.cfg
ADDED
excelize-0.0.1/setup.py
ADDED
|
@@ -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
|
+
)
|