forked from snowflakedb/snowflake-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (74 loc) · 2.42 KB
/
setup.cfg
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
[bdist_wheel]
universal = 1
[metadata]
name = snowflake-sqlalchemy
version = 1.4.1
description = Snowflake SQLAlchemy Dialect
long_description = file: DESCRIPTION.md
long_description_content_type = text/markdown
url = https://www.snowflake.com/
author = Snowflake, Inc
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE.txt
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 :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: SQL
Topic :: Database
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
keywords = Snowflake db database cloud analytics warehouse
project_urls =
Documentation=https://docs.snowflake.com/en/user-guide/sqlalchemy.html
Source=https://github.com/snowflakedb/snowflake-sqlalchemy
Issues=https://github.com/snowflakedb/snowflake-sqlalchemy/issues
Changelog=https://github.com/snowflakedb/snowflake-sqlalchemy/blob/main/DESCRIPTION.md
[options]
python_requires = >=3.7
packages = find_namespace:
install_requires =
importlib-metadata;python_version<"3.8"
sqlalchemy<2.0.0,>=1.4.0
; Keep in sync with extras dependency
snowflake-connector-python<3.0.0
include_package_data = True
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
include = snowflake.*
[options.entry_points]
sqlalchemy.dialects =
snowflake=snowflake.sqlalchemy:dialect
[options.extras_require]
development =
pytest
pytest-cov
pytest-rerunfailures
pytest-timeout
mock
pytz
numpy
pandas =
snowflake-connector-python[pandas]<3.0.0
[sqla_testing]
requirement_cls=snowflake.sqlalchemy.requirements:Requirements
profile_file=tests/profiles.txt