hellosailb 2.0.0b1__tar.gz → 2.0.0b70__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.2
2
+ Name: hellosailb
3
+ Version: 2.0.0b70
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,2 @@
1
+ def hellosaib():
2
+ print("Hello from AI!!")
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.2
2
+ Name: hellosailb
3
+ Version: 2.0.0b70
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.0b70'
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
+ )
@@ -1,10 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: hellosailb
3
- Version: 2.0.0b1
4
- Summary: UNKNOWN
5
- Home-page: UNKNOWN
6
- License: UNKNOWN
7
- Platform: UNKNOWN
8
-
9
- UNKNOWN
10
-
@@ -1 +0,0 @@
1
- from .main import hellosaib
@@ -1,2 +0,0 @@
1
- def hellosaib():
2
- print("Hello from AI!!")
@@ -1,10 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: hellosailb
3
- Version: 2.0.0b1
4
- Summary: UNKNOWN
5
- Home-page: UNKNOWN
6
- License: UNKNOWN
7
- Platform: UNKNOWN
8
-
9
- UNKNOWN
10
-
@@ -1,10 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name='hellosailb',
5
- version='2.0.0b1',
6
- packages = find_packages(),
7
- install_requires=[
8
-
9
- ]
10
- )
File without changes