-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (34 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
# -*- coding: utf-8 -*-
from setuptools import (
find_packages,
setup,
)
if __name__ == '__main__':
setup(
name='clickhouse',
version='0.1.7',
author='ppodolsky',
author_email='[email protected]',
url='https://github.com/ppodolsky/clickhouse-python',
description="""A Python library for working with the ClickHouse database""",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database"
],
packages=find_packages(exclude=('tests', 'tests.*')),
install_requires=[
'pytz',
'requests',
'setuptools',
'six',
'enum34',
'izihawa-commons >= 0.0.10',
]
)