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.
@@ -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,7 @@
1
+ # testgres - common
2
+
3
+ Common code of testgres.
4
+
5
+ ## Authors
6
+
7
+ [Postgres Professional](https://postgrespro.ru/about)
@@ -0,0 +1,11 @@
1
+ [metadata]
2
+ description-file = README.md
3
+
4
+ [flake8]
5
+ ignore = E501
6
+ exclude = .git,__pycache__,env,venv
7
+
8
+ [egg_info]
9
+ tag_build =
10
+ tag_date = 0
11
+
@@ -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,10 @@
1
+ # coding: utf-8
2
+
3
+
4
+ class TestgresException(Exception):
5
+ pass
6
+
7
+
8
+ class InvalidOperationException(TestgresException):
9
+ pass
10
+
@@ -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,9 @@
1
+ README.md
2
+ setup.cfg
3
+ setup.py
4
+ src/__init__.py
5
+ src/exceptions.py
6
+ testgres.common.egg-info/PKG-INFO
7
+ testgres.common.egg-info/SOURCES.txt
8
+ testgres.common.egg-info/dependency_links.txt
9
+ testgres.common.egg-info/top_level.txt