testgres.common 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.
- testgres_common-0.0.1/PKG-INFO +17 -0
- testgres_common-0.0.1/README.md +7 -0
- testgres_common-0.0.1/setup.cfg +11 -0
- testgres_common-0.0.1/setup.py +21 -0
- testgres_common-0.0.1/src/__init__.py +0 -0
- testgres_common-0.0.1/src/exceptions.py +10 -0
- testgres_common-0.0.1/testgres.common.egg-info/PKG-INFO +17 -0
- testgres_common-0.0.1/testgres.common.egg-info/SOURCES.txt +9 -0
- testgres_common-0.0.1/testgres.common.egg-info/dependency_links.txt +1 -0
- testgres_common-0.0.1/testgres.common.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: testgres.common
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Testgres common code
|
|
5
|
+
Home-page: https://github.com/postgrespro/testgres.common
|
|
6
|
+
Author: Postgres Professional
|
|
7
|
+
Author-email: testgres@postgrespro.ru
|
|
8
|
+
License: PostgreSQL
|
|
9
|
+
Keywords: testgres
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: keywords
|
|
16
|
+
Dynamic: license
|
|
17
|
+
Dynamic: summary
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
try:
|
|
2
|
+
from setuptools import setup
|
|
3
|
+
except ImportError:
|
|
4
|
+
from distutils.core import setup
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
version="0.0.1",
|
|
8
|
+
name="testgres.common",
|
|
9
|
+
packages=[
|
|
10
|
+
"testgres.common",
|
|
11
|
+
],
|
|
12
|
+
package_dir={"testgres.common": "src"},
|
|
13
|
+
description='Testgres common code',
|
|
14
|
+
url='https://github.com/postgrespro/testgres.common',
|
|
15
|
+
long_description_content_type='text/markdown',
|
|
16
|
+
license='PostgreSQL',
|
|
17
|
+
author='Postgres Professional',
|
|
18
|
+
author_email='testgres@postgrespro.ru',
|
|
19
|
+
keywords=['testgres'],
|
|
20
|
+
)
|
|
21
|
+
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: testgres.common
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Testgres common code
|
|
5
|
+
Home-page: https://github.com/postgrespro/testgres.common
|
|
6
|
+
Author: Postgres Professional
|
|
7
|
+
Author-email: testgres@postgrespro.ru
|
|
8
|
+
License: PostgreSQL
|
|
9
|
+
Keywords: testgres
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: keywords
|
|
16
|
+
Dynamic: license
|
|
17
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
testgres
|