forked from cloudflare/sqlalchemy-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
65 lines (56 loc) · 1.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
from os import path, getenv
from setuptools import setup
from codecs import open
VERSION = [0, 1, 1]
readme = open('README.rst').read()
setup(
name='sqlalchemy-clickhouse',
version='.'.join('%d' % v for v in VERSION[0:3]) + "-3",
description='ClickHouse SQLAlchemy Dialect',
long_description = readme,
author = 'Cloudflare, Inc.',
author_email = '[email protected]',
license = 'Apache License, Version 2.0',
url = 'https://github.com/cloudflare/sqlalchemy-clickhouse',
keywords = "db database cloud analytics clickhouse",
download_url = 'https://github.com/cloudflare/sqlalchemy-clickhouse/releases/tag/v0.1',
install_requires = [
'sqlalchemy>=1.0.0',
'infi.clickhouse_orm>=0.7.1'
],
packages=[
'sqlalchemy_clickhouse',
],
package_dir={
'sqlalchemy_clickhouse': '.',
},
package_data={
'sqlalchemy_clickhouse': ['LICENSE.txt'],
},
entry_points={
'sqlalchemy.dialects': [
'clickhouse=sqlalchemy_clickhouse.base',
]
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: SQL',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Database',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)