openubmc-bingo 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.
Potentially problematic release.
This version of openubmc-bingo might be problematic. Click here for more details.
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 1.1
|
|
2
|
+
Name: openubmc-bingo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: One
|
|
5
|
+
Home-page: https://www.openubmc.cn
|
|
6
|
+
Author: LiYanghang
|
|
7
|
+
Author-email: author@openubmc.cn
|
|
8
|
+
License: MulanPSL2
|
|
9
|
+
Download-URL: https://www.openubmc.cn
|
|
10
|
+
Description: UNKNOWN
|
|
11
|
+
Keywords: openubmc,Python
|
|
12
|
+
Platform: UNKNOWN
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from bingo.One import One
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from distutils.core import setup
|
|
2
|
+
setup(
|
|
3
|
+
name = 'openubmc-bingo', # 写包的名字
|
|
4
|
+
packages = ['bingo'], # 写包的名字
|
|
5
|
+
version = '0.0.1', # Start with a small number and increase it with every change you make
|
|
6
|
+
license='MulanPSL2', # 选择一个开源许可对应你刚才那个from here: https://help.github.com/articles/licensing-a-repository
|
|
7
|
+
description = 'One', # Give a short description about your library
|
|
8
|
+
author = 'LiYanghang', # 填写作者名称
|
|
9
|
+
author_email = 'author@openubmc.cn', # 填写email
|
|
10
|
+
url = 'https://www.openubmc.cn', # Provide either the link to your github or to your website
|
|
11
|
+
download_url = 'https://www.openubmc.cn', # I explain this later on
|
|
12
|
+
keywords = ['openubmc', 'Python'], # Keywords that define your package best
|
|
13
|
+
install_requires=[ # 包的依赖
|
|
14
|
+
'requests', # 可以加上版本号,如validators=1.5.1
|
|
15
|
+
'datetime',
|
|
16
|
+
'urllib3==1.26.6',
|
|
17
|
+
],
|
|
18
|
+
classifiers=[
|
|
19
|
+
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
|
|
20
|
+
'Intended Audience :: Developers', # Define that your audience are developers
|
|
21
|
+
'Topic :: Software Development :: Build Tools',
|
|
22
|
+
'License :: OSI Approved :: MIT License', # 再次选择
|
|
23
|
+
'Programming Language :: Python :: 3.7',
|
|
24
|
+
]
|
|
25
|
+
)
|