forked from postgrespro/testgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 798 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
31
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Basic dependencies
install_requires = ["pg8000", "port-for>=0.4", "six>=1.9.0"]
# 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(
version='1.5.0',
name='testgres',
packages=['testgres'],
description='Testing utility for PostgreSQL and its extensions',
url='https://github.com/postgrespro/testgres',
license='PostgreSQL',
author='Ildar Musin',
author_email='[email protected]',
keywords=['test', 'testing', 'postgresql'],
install_requires=install_requires,
classifiers=[],
)