forked from Adyen/feast-spark-offline-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 959 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
INSTALL_REQUIRES = [
"feast>=0.15.0",
"pyspark>=3.0",
"pyarrow>=1.0.0",
"numpy",
"pandas",
"pytz>=2021.3",
"pydantic>=1.6",
]
DEV_REQUIRES = INSTALL_REQUIRES + [
"black",
"filelock",
"flake8",
"google",
"pytest>=6.2.5",
"pytest-xdist>=2.5.0",
"setuptools_scm",
"wheel",
]
setup(
name="feast_spark_offline_store",
author="Thijs Brits",
use_version_scm=True,
description="Spark support for Feast offline store",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Adyen/feast-spark-offline-store",
license="MIT",
python_requires=">=3.8.0",
packages=find_packages(include=["feast_spark_offline_store"]),
install_requires=INSTALL_REQUIRES,
extras_require={"dev": DEV_REQUIRES},
setup_requires=["setuptools_scm"],
)