forked from vertica/vertica-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1007 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
#!/usr/bin/env python
import collections
from setuptools import setup, find_packages
ReqOpts = collections.namedtuple('ReqOpts', ['skip_requirements_regex', 'default_vcs'])
opts = ReqOpts(None, 'git')
setup(
name='vertica-python',
version='0.2.2',
description='A native Python client for the Vertica database.',
author='Justin Berka, Alex Kim',
author_email='[email protected], [email protected]',
url='https://github.com/uber/vertica-python/',
keywords="database vertica",
packages=find_packages(),
license="MIT",
install_requires=['python-dateutil>=1.5', 'pytz'],
extras_require={'namedparams': ['psycopg2>=2.5.1']},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Operating System :: OS Independent"
]
)