forked from saulbein/snowflake-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (72 loc) · 2.43 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2019 Snowflake Computing Inc. All right reserved.
#
from os import path, getenv
from setuptools import setup
from codecs import open
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-sqlalchemy',
version=version,
description='Snowflake SQLAlchemy Dialect',
long_description = long_description,
author = 'Snowflake Computing, Inc',
author_email = '[email protected]',
license = 'Apache License, Version 2.0',
url = 'https://www.snowflake.net/',
keywords = "Snowflake db database cloud analytics warehouse",
download_url = 'https://www.snowflake.net/',
use_2to3 = False,
install_requires = [
'sqlalchemy<2.0.0',
'snowflake-connector-python<2.0.0',
],
namespace_packages=[
'snowflake'
],
packages=[
'snowflake.sqlalchemy',
],
package_dir={
'snowflake.sqlalchemy': '.',
},
package_data={
'snowflake.sqlalchemy': ['LICENSE.txt'],
},
entry_points={
'sqlalchemy.dialects': [
'snowflake=snowflake.sqlalchemy:dialect',
]
},
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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'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',
],
)