forked from bennfocus/feast-hive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.35 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
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
INSTALL_REQUIRE = [
"feast>=0.17.0",
"impyla[kerberos]>=0.15.0",
]
TEST_REQUIRE = ["pytest==6.0.0", "pytest-xdist", "assertpy==1.1"]
DEV_REQUIRE = [
"flake8",
"black==19.10b0",
"isort>=5",
"mypy==0.790",
]
setup(
name="feast-hive",
version="0.17.0",
author="Benn Ma",
author_email="bennmsg@gmail.com",
description="Hive support for Feast offline store",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.7.0",
url="https://github.com/baineng/feast-hive",
project_urls={
"Bug Tracker": "https://github.com/baineng/feast-hive/issues",
},
license='Apache License, Version 2.0',
packages=["feast_hive"],
install_requires=INSTALL_REQUIRE,
extras_require={
"dev": DEV_REQUIRE + TEST_REQUIRE,
"test": TEST_REQUIRE,
},
keywords=("feast featurestore hive offlinestore"),
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)