mytestlib-1 1.0.0__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.
- mytestlib_1-1.0.0/PKG-INFO +11 -0
- mytestlib_1-1.0.0/README.txt +1 -0
- mytestlib_1-1.0.0/mytestlib/__init__.py +1 -0
- mytestlib_1-1.0.0/mytestlib/greet.py +2 -0
- mytestlib_1-1.0.0/mytestlib_1.egg-info/PKG-INFO +11 -0
- mytestlib_1-1.0.0/mytestlib_1.egg-info/SOURCES.txt +8 -0
- mytestlib_1-1.0.0/mytestlib_1.egg-info/dependency_links.txt +1 -0
- mytestlib_1-1.0.0/mytestlib_1.egg-info/top_level.txt +1 -0
- mytestlib_1-1.0.0/setup.cfg +4 -0
- mytestlib_1-1.0.0/setup.py +11 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: mytestlib-1
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: My Test Library.
|
5
|
+
Home-page: https://pypi.org/manage/projects/
|
6
|
+
Author: Yosuke Saka
|
7
|
+
Author-email: yosuke.saka3416@gmail.com
|
8
|
+
Dynamic: author
|
9
|
+
Dynamic: author-email
|
10
|
+
Dynamic: home-page
|
11
|
+
Dynamic: summary
|
@@ -0,0 +1 @@
|
|
1
|
+
This is My Test Library.
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: mytestlib-1
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: My Test Library.
|
5
|
+
Home-page: https://pypi.org/manage/projects/
|
6
|
+
Author: Yosuke Saka
|
7
|
+
Author-email: yosuke.saka3416@gmail.com
|
8
|
+
Dynamic: author
|
9
|
+
Dynamic: author-email
|
10
|
+
Dynamic: home-page
|
11
|
+
Dynamic: summary
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
mytestlib
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
setup(
|
4
|
+
name='mytestlib-1',
|
5
|
+
version='1.0.0',
|
6
|
+
url='https://pypi.org/manage/projects/',
|
7
|
+
author='Yosuke Saka',
|
8
|
+
author_email='yosuke.saka3416@gmail.com',
|
9
|
+
description='My Test Library.',
|
10
|
+
packages=find_packages()
|
11
|
+
)
|