hellosailb 2.0.0b1__tar.gz → 2.0.0b56__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- hellosailb-2.0.0b56/PKG-INFO +13 -0
- hellosailb-2.0.0b56/hellosailb/__init__.py +1 -0
- hellosailb-2.0.0b56/hellosailb/main.py +2 -0
- hellosailb-2.0.0b56/hellosailb.egg-info/PKG-INFO +13 -0
- hellosailb-2.0.0b56/setup.py +21 -0
- hellosailb-2.0.0b1/PKG-INFO +0 -10
- hellosailb-2.0.0b1/hellosailb/__init__.py +0 -1
- hellosailb-2.0.0b1/hellosailb/main.py +0 -2
- hellosailb-2.0.0b1/hellosailb.egg-info/PKG-INFO +0 -10
- hellosailb-2.0.0b1/setup.py +0 -10
- {hellosailb-2.0.0b1 → hellosailb-2.0.0b56}/hellosailb.egg-info/SOURCES.txt +0 -0
- {hellosailb-2.0.0b1 → hellosailb-2.0.0b56}/hellosailb.egg-info/dependency_links.txt +0 -0
- {hellosailb-2.0.0b1 → hellosailb-2.0.0b56}/hellosailb.egg-info/top_level.txt +0 -0
- {hellosailb-2.0.0b1 → hellosailb-2.0.0b56}/setup.cfg +0 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: hellosailb
|
3
|
+
Version: 2.0.0b56
|
4
|
+
Summary: Python programming language
|
5
|
+
Author: Sailesh
|
6
|
+
Author-email: test@gmail.com
|
7
|
+
License: LICENSE
|
8
|
+
Requires-Python: >=3.8
|
9
|
+
Dynamic: author
|
10
|
+
Dynamic: author-email
|
11
|
+
Dynamic: license
|
12
|
+
Dynamic: requires-python
|
13
|
+
Dynamic: summary
|
@@ -0,0 +1 @@
|
|
1
|
+
from .main import hellosaib
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: hellosailb
|
3
|
+
Version: 2.0.0b56
|
4
|
+
Summary: Python programming language
|
5
|
+
Author: Sailesh
|
6
|
+
Author-email: test@gmail.com
|
7
|
+
License: LICENSE
|
8
|
+
Requires-Python: >=3.8
|
9
|
+
Dynamic: author
|
10
|
+
Dynamic: author-email
|
11
|
+
Dynamic: license
|
12
|
+
Dynamic: requires-python
|
13
|
+
Dynamic: summary
|
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
from setuptools import setup, find_packages
|
3
|
+
import sys
|
4
|
+
|
5
|
+
|
6
|
+
if sys.version_info < (3, 8):
|
7
|
+
raise RuntimeError("requires Python 3.8+")
|
8
|
+
current_version = '2.0.0b56'
|
9
|
+
|
10
|
+
setup(
|
11
|
+
name='hellosailb',
|
12
|
+
version=current_version,
|
13
|
+
author='Sailesh',
|
14
|
+
author_email='test@gmail.com',
|
15
|
+
packages=find_packages(where='.', exclude=['test*']),
|
16
|
+
license='LICENSE',
|
17
|
+
description=' Python programming language',
|
18
|
+
install_requires=[
|
19
|
+
],
|
20
|
+
python_requires=">=3.8"
|
21
|
+
)
|
hellosailb-2.0.0b1/PKG-INFO
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
from .main import hellosaib
|
hellosailb-2.0.0b1/setup.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|