forked from postgrespro/testgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 776 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Basic dependencies
install_requires = ["pg8000", "port-for", "six"]
# Add compatibility enum class
if sys.version_info < (3, 4):
install_requires.append("enum34")
# Add compatibility ipaddress module
if sys.version_info < (3, 3):
install_requires.append("ipaddress")
setup(
name='testgres',
packages=['testgres'],
version='1.4.1',
description='Testing utility for PostgreSQL and its extensions',
license='PostgreSQL',
author='Ildar Musin',
author_email='[email protected]',
url='https://github.com/postgrespro/testgres',
keywords=['testing', 'postgresql'],
classifiers=[],
install_requires=install_requires)