Alaea 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.
- Alaea-0.0.1/Alaea/__init__.py +11 -0
- Alaea-0.0.1/Alaea.egg-info/PKG-INFO +23 -0
- Alaea-0.0.1/Alaea.egg-info/SOURCES.txt +9 -0
- Alaea-0.0.1/Alaea.egg-info/dependency_links.txt +1 -0
- Alaea-0.0.1/Alaea.egg-info/top_level.txt +1 -0
- Alaea-0.0.1/MANIFEST.in +6 -0
- Alaea-0.0.1/PKG-INFO +23 -0
- Alaea-0.0.1/README.md +11 -0
- Alaea-0.0.1/run_twine.py +18 -0
- Alaea-0.0.1/setup.cfg +4 -0
- Alaea-0.0.1/setup.py +27 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: Alaea
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Some simple tools for Christmas
|
|
5
|
+
Author: Christmas
|
|
6
|
+
Author-email: 273519355@qq.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# This Package is a collection of Christmas related packages.
|
|
14
|
+
## Authors : Christmas
|
|
15
|
+
## Maintainer : Christmas
|
|
16
|
+
|
|
17
|
+
To install this package, run:
|
|
18
|
+
|
|
19
|
+
pip install Alaea
|
|
20
|
+
or
|
|
21
|
+
|
|
22
|
+
pip3 install Alaea
|
|
23
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Alaea
|
Alaea-0.0.1/MANIFEST.in
ADDED
Alaea-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: Alaea
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Some simple tools for Christmas
|
|
5
|
+
Author: Christmas
|
|
6
|
+
Author-email: 273519355@qq.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# This Package is a collection of Christmas related packages.
|
|
14
|
+
## Authors : Christmas
|
|
15
|
+
## Maintainer : Christmas
|
|
16
|
+
|
|
17
|
+
To install this package, run:
|
|
18
|
+
|
|
19
|
+
pip install Alaea
|
|
20
|
+
or
|
|
21
|
+
|
|
22
|
+
pip3 install Alaea
|
|
23
|
+
|
Alaea-0.0.1/README.md
ADDED
Alaea-0.0.1/run_twine.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/Users/christmas/opt/anaconda3/bin/python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# 日期 : 2023/3/9 14:06
|
|
4
|
+
# 作者 : Christmas
|
|
5
|
+
# 邮箱 : 273519355@qq.com
|
|
6
|
+
# 项目 : Project
|
|
7
|
+
# 版本 : python 3
|
|
8
|
+
# 摘要 :
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
"""
|
|
12
|
+
import os
|
|
13
|
+
# /Users/christmas/opt/anaconda3/lib/python3.9/site-packages
|
|
14
|
+
|
|
15
|
+
os.chdir('/Users/christmas/Documents/Code/Project/Alaea/')
|
|
16
|
+
os.system('rm -rf dist build')
|
|
17
|
+
os.system('python3 setup.py sdist bdist_wheel')
|
|
18
|
+
os.system('twine upload dist/*')
|
Alaea-0.0.1/setup.cfg
ADDED
Alaea-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import setuptools
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
setuptools.setup(
|
|
8
|
+
name="Alaea",
|
|
9
|
+
version="0.0.1",
|
|
10
|
+
author="Christmas",
|
|
11
|
+
author_email="273519355@qq.com",
|
|
12
|
+
description="Some simple tools for Christmas",
|
|
13
|
+
long_description=long_description,
|
|
14
|
+
long_description_content_type="text/markdown",
|
|
15
|
+
packages=setuptools.find_packages(),
|
|
16
|
+
include_package_data=True,
|
|
17
|
+
classifiers=[
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
],
|
|
22
|
+
python_requires='>=3.6',
|
|
23
|
+
install_requires=[
|
|
24
|
+
],
|
|
25
|
+
)
|
|
26
|
+
# python3 setup.py sdist bdist_wheel
|
|
27
|
+
# twine upload dist/*
|