forked from whummer/postgresql-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 946 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 os
import re
import sys
from setuptools import find_packages, setup
install_requires = []
if __name__ == '__main__':
setup(
name='postgresql-proxy',
version='0.0.4',
description='Postgresql Proxy',
packages=find_packages(exclude=('tests', 'tests.*')),
install_requires=install_requires,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Testing',
]
)