-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
41 lines (37 loc) · 1.13 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
from setuptools import find_packages, setup
__package_name__ = "butterfree"
__version__ = "1.3.5"
__repository_url__ = "https://github.com/quintoandar/butterfree"
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("README.md") as f:
long_description = f.read()
setup(
name=__package_name__,
description="A tool for building feature stores - Transform your raw data "
"into beautiful features.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="feature store sets ETL",
version=__version__,
url=__repository_url__,
packages=find_packages(
exclude=(
"docs",
"tests",
"tests.*",
"pipenv",
"env",
"examples",
"htmlcov",
".pytest_cache",
)
),
license="Copyright",
author="QuintoAndar",
install_requires=requirements,
extras_require={"h3": ["h3>=3.7.4,<4"]},
python_requires=">=3.9, <4",
entry_points={"console_scripts": ["butterfree=butterfree._cli.main:app"]},
include_package_data=True,
)