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.
@@ -0,0 +1,11 @@
1
+ #!/Users/christmas/opt/anaconda3/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ # 日期 : 2024/1/29 12:41
4
+ # 作者 : Christmas
5
+ # 邮箱 : 273519355@qq.com
6
+ # 项目 : Project
7
+ # 版本 : python 3
8
+ # 摘要 :
9
+ """
10
+
11
+ """
@@ -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,9 @@
1
+ MANIFEST.in
2
+ README.md
3
+ run_twine.py
4
+ setup.py
5
+ Alaea/__init__.py
6
+ Alaea.egg-info/PKG-INFO
7
+ Alaea.egg-info/SOURCES.txt
8
+ Alaea.egg-info/dependency_links.txt
9
+ Alaea.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ Alaea
@@ -0,0 +1,6 @@
1
+ exclude *.pyc
2
+ exclude __pycache__
3
+ exclude .gitignore
4
+ exclude .DS_Store
5
+ recursive-include christmas/mncPy *
6
+ include *
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
@@ -0,0 +1,11 @@
1
+ # This Package is a collection of Christmas related packages.
2
+ ## Authors : Christmas
3
+ ## Maintainer : Christmas
4
+
5
+ To install this package, run:
6
+
7
+ pip install Alaea
8
+ or
9
+
10
+ pip3 install Alaea
11
+
@@ -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
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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/*