testgres.common 0.0.1__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testgres.common
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: Testgres common code
5
5
  Home-page: https://github.com/postgrespro/testgres.common
6
6
  Author: Postgres Professional
@@ -10,8 +10,17 @@ Keywords: testgres
10
10
  Description-Content-Type: text/markdown
11
11
  Dynamic: author
12
12
  Dynamic: author-email
13
+ Dynamic: description
13
14
  Dynamic: description-content-type
14
15
  Dynamic: home-page
15
16
  Dynamic: keywords
16
17
  Dynamic: license
17
18
  Dynamic: summary
19
+
20
+ # testgres - common
21
+
22
+ Common code of testgres.
23
+
24
+ ## Authors
25
+
26
+ [Postgres Professional](https://postgrespro.ru/about)
@@ -1,5 +1,5 @@
1
1
  [metadata]
2
- description-file = README.md
2
+ description_file = README.md
3
3
 
4
4
  [flake8]
5
5
  ignore = E501
@@ -3,8 +3,12 @@ try:
3
3
  except ImportError:
4
4
  from distutils.core import setup
5
5
 
6
+ # Get contents of README file
7
+ with open("README.md", "r") as f:
8
+ readme = f.read()
9
+
6
10
  setup(
7
- version="0.0.1",
11
+ version="0.0.3",
8
12
  name="testgres.common",
9
13
  packages=[
10
14
  "testgres.common",
@@ -12,10 +16,10 @@ setup(
12
16
  package_dir={"testgres.common": "src"},
13
17
  description='Testgres common code',
14
18
  url='https://github.com/postgrespro/testgres.common',
19
+ long_description=readme,
15
20
  long_description_content_type='text/markdown',
16
21
  license='PostgreSQL',
17
22
  author='Postgres Professional',
18
23
  author_email='testgres@postgrespro.ru',
19
24
  keywords=['testgres'],
20
25
  )
21
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testgres.common
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: Testgres common code
5
5
  Home-page: https://github.com/postgrespro/testgres.common
6
6
  Author: Postgres Professional
@@ -10,8 +10,17 @@ Keywords: testgres
10
10
  Description-Content-Type: text/markdown
11
11
  Dynamic: author
12
12
  Dynamic: author-email
13
+ Dynamic: description
13
14
  Dynamic: description-content-type
14
15
  Dynamic: home-page
15
16
  Dynamic: keywords
16
17
  Dynamic: license
17
18
  Dynamic: summary
19
+
20
+ # testgres - common
21
+
22
+ Common code of testgres.
23
+
24
+ ## Authors
25
+
26
+ [Postgres Professional](https://postgrespro.ru/about)
@@ -1,7 +1,6 @@
1
1
  README.md
2
2
  setup.cfg
3
3
  setup.py
4
- src/__init__.py
5
4
  src/exceptions.py
6
5
  testgres.common.egg-info/PKG-INFO
7
6
  testgres.common.egg-info/SOURCES.txt
File without changes