forked from snowflakedb/snowflake-connector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
99 lines (85 loc) · 2.83 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2017 Snowflake Computing Inc. All right reserved.
#
from codecs import open
from os import path
from setuptools import setup
THIS_DIR = path.dirname(path.realpath(__file__))
try:
from generated_version import VERSION
except:
from version import VERSION
version = '.'.join([str(v) for v in VERSION if v is not None])
with open(path.join(THIS_DIR, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='snowflake-connector-python',
version=version,
description=u"Snowflake Connector for Python",
long_description=long_description,
author='Snowflake Computing, Inc',
author_email='[email protected]',
license='Apache License, Version 2.0',
keywords="Snowflake db database cloud analytics warehouse",
url='https://www.snowflake.net/',
download_url='https://www.snowflake.net/',
use_2to3=False,
install_requires=[
'azure-common<2',
'azure_nspkg<3',
'azure-storage<=0.34.2',
'boto3>=1.4.4,<=1.4.8',
'botocore>=1.5.0,<1.9.0',
'certifi',
'future',
'six',
'pytz',
'pycryptodome>=3.2',
'pyOpenSSL>=16.2.0,<18.0.0',
'cffi>=1.9',
'cryptography>=1.7.2,<2.2',
'pyasn1>=0.2.1,<0.4.0',
'pyasn1-modules>=0.0.8,<0.2.0',
'ijson',
],
namespace_packages=['snowflake'],
packages=[
'snowflake.connector',
],
package_dir={
'snowflake.connector': '.',
},
package_data={
'snowflake.connector': ['*.pem', '*.json', '*.rst', 'LICENSE.txt'],
},
entry_points={
'console_scripts': [
'snowflake-ocsp-dump-response = '
'snowflake.connector.ocsp_pyopenssl:cli_ocsp_dump_response',
],
},
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',
'Programming Language :: Python :: 3.6',
'Topic :: Database',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Information Analysis',
],
)