tsjson 0.1.6__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.
- tsjson-0.1.6/PKG-INFO +19 -0
- tsjson-0.1.6/setup.cfg +4 -0
- tsjson-0.1.6/setup.py +19 -0
- tsjson-0.1.6/tsjson/__init__.py +0 -0
- tsjson-0.1.6/tsjson/hello.py +2 -0
- tsjson-0.1.6/tsjson/js.py +1 -0
- tsjson-0.1.6/tsjson/my.tar.py +0 -0
- tsjson-0.1.6/tsjson/swimming.vscode-plugin-swimming-1.1.2.vsix.py +0 -0
- tsjson-0.1.6/tsjson.egg-info/PKG-INFO +19 -0
- tsjson-0.1.6/tsjson.egg-info/SOURCES.txt +10 -0
- tsjson-0.1.6/tsjson.egg-info/dependency_links.txt +1 -0
- tsjson-0.1.6/tsjson.egg-info/top_level.txt +1 -0
tsjson-0.1.6/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tsjson
|
|
3
|
+
Version: 0.1.6
|
|
4
|
+
Summary: A simple example package
|
|
5
|
+
Home-page: https://github.com/yourusername/my_package
|
|
6
|
+
Author: Gavin
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
tsjson-0.1.6/setup.cfg
ADDED
tsjson-0.1.6/setup.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='tsjson', # 包名,必须唯一(检查 PyPI 是否已存在)
|
|
5
|
+
version='0.1.6', # 版本号,格式如 x.y.z
|
|
6
|
+
packages=find_packages(), # 自动发现包
|
|
7
|
+
description='A simple example package',
|
|
8
|
+
# long_description=open('README.md').read(), # 从 README.md 读取
|
|
9
|
+
long_description_content_type='text/markdown',
|
|
10
|
+
author='Gavin',
|
|
11
|
+
author_email='your.email@example.com',
|
|
12
|
+
url='https://github.com/yourusername/my_package', # 项目主页(可选)
|
|
13
|
+
classifiers=[ # 分类标签,帮助搜索
|
|
14
|
+
'Programming Language :: Python :: 3',
|
|
15
|
+
'License :: OSI Approved :: MIT License',
|
|
16
|
+
'Operating System :: OS Independent',
|
|
17
|
+
],
|
|
18
|
+
python_requires='>=3.8', # 支持的 Python 版本
|
|
19
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
s
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tsjson
|
|
3
|
+
Version: 0.1.6
|
|
4
|
+
Summary: A simple example package
|
|
5
|
+
Home-page: https://github.com/yourusername/my_package
|
|
6
|
+
Author: Gavin
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
setup.py
|
|
2
|
+
tsjson/__init__.py
|
|
3
|
+
tsjson/hello.py
|
|
4
|
+
tsjson/js.py
|
|
5
|
+
tsjson/my.tar.py
|
|
6
|
+
tsjson/swimming.vscode-plugin-swimming-1.1.2.vsix.py
|
|
7
|
+
tsjson.egg-info/PKG-INFO
|
|
8
|
+
tsjson.egg-info/SOURCES.txt
|
|
9
|
+
tsjson.egg-info/dependency_links.txt
|
|
10
|
+
tsjson.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tsjson
|