forked from elementary-data/elementary-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.06 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
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="elementary-tutorial",
description="Tutorial for Elementary.",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.6.2",
author="Elementary",
entry_points="""
[console_scripts]
elementary-tutorial=elementary_tutorial.cli:cli
""",
long_description=README,
install_requires=["click>=7.0,<9", "elementary-data"],
extras_require={
"snowflake": ["elementary-data[snowflake]"],
"bigquery": ["elementary-data[bigquery]"],
"redshift": ["elementary-data[redshift]"],
"postgres": ["elementary-data[postgres]"],
"databricks": ["elementary-data[databricks]"],
"spark": ["elementary-data[spark]"],
},
long_description_content_type="text/markdown",
url="https://github.com/elementary-data/tutorial",
author_email="idan@elementary-data.com",
)