We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d53063 commit 1678f27Copy full SHA for 1678f27
setup.py
@@ -0,0 +1,18 @@
1
+try:
2
+ from setuptools import setup
3
+except ImportError:
4
+ from distutils.core import setup
5
+
6
+setup(
7
+ version='0.1.1',
8
+ name='testgres_pg_probackup2',
9
+ packages=['pg_probackup2', 'pg_probackup2.storage'],
10
+ description='Plugin for testgres that manages pg_probackup2',
11
+ url='https://github.com/postgrespro/testgres',
12
+ long_description_content_type='text/markdown',
13
+ license='PostgreSQL',
14
+ author='Postgres Professional',
15
+ author_email='testgres@postgrespro.ru',
16
+ keywords=['pg_probackup', 'testing', 'testgres'],
17
+ install_requires=['testgres>=1.9.2']
18
+)
0 commit comments