-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
56 lines (52 loc) · 1.56 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
from setuptools import find_packages, setup
NAME = "sqlalchemy-kusto"
DESCRIPTION = "Azure Data Explorer (Kusto) dialect for SQLAlchemy"
VERSION = "2.0.1"
REQUIREMENTS = [
"azure-kusto-data==3.*",
"sqlalchemy==1.4.*",
"typing-extensions>=3.10",
]
EXTRAS = {
"dev": [
"black>=21.12b0",
"isort>=5.10.1",
"mypy==0.971",
"pylint==2.15.0",
"pytest>=6.2.5",
"python-dotenv>=0.19.2",
]
}
with open("README.md", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
author="Dodo Engineering",
author_email="devcommunity@dodopizza.com",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
description=DESCRIPTION,
entry_points={
"sqlalchemy.dialects": [
"kustosql.https = sqlalchemy_kusto.dialect_sql:KustoSqlHttpsDialect",
"kustokql.https = sqlalchemy_kusto.dialect_kql:KustoKqlHttpsDialect",
]
},
extras_require=EXTRAS,
include_package_data=True,
install_requires=REQUIREMENTS,
license="Apache License, Version 2.0",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
name=NAME,
url="https://github.com/dodopizza/sqlalchemy-kusto",
packages=find_packages(exclude=["tests", "tests.*"]),
project_urls={
"Bug Tracker": "https://github.com/dodopizza/sqlalchemy-kusto/issues",
},
python_requires=">=3.7",
version=VERSION,
zip_safe=False,
)