-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (70 loc) · 1.93 KB
/
Copy pathsetup.py
File metadata and controls
73 lines (70 loc) · 1.93 KB
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
import os
from os.path import exists
from setuptools import find_packages, setup
description = open("README.md").read() if exists("README.md") else ""
setup(
name="sqlmesh",
description="",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/TobikoData/sqlmesh",
author="TobikoData Inc.",
author_email="engineering@tobikodata.com",
license="Apache License 2.0",
packages=find_packages(include=["sqlmesh", "sqlmesh.*"]),
entry_points={
"console_scripts": [
"sqlmesh = sqlmesh.cli.main:cli",
],
},
install_requires=[
"click",
"croniter",
"duckdb",
"dateparser",
"hyperscript",
"pandas",
"pydantic",
"requests",
"rich",
"ruamel.yaml",
"sqlglot>=10.2.4",
],
extras_require={
"dev": [
f"apache-airflow=={os.environ.get('AIRFLOW_VERSION', '2.3.3')}",
"autoflake==1.7.7",
"black==22.6.0",
"google-auth",
"isort==5.10.1",
"mypy==0.981",
"ipywidgets",
"pre-commit",
"pandas-stubs",
"pdoc",
"psycopg2-binary",
"PyGithub",
"pytest",
"pytest-mock",
"pyspark",
"sqlalchemy-stubs",
"tenacity",
"types-croniter",
"types-dateparser",
"types-requests==2.28.8",
],
"web": [
"fastapi==0.85.0",
"hyperscript==0.0.1",
"uvicorn==0.18.3",
],
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: SQL",
"Programming Language :: Python :: 3 :: Only",
],
)