-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
52 lines (47 loc) · 1.47 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
52
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
INSTALL_REQUIRE = [
"feast==0.19.*",
"psycopg2-binary>=2.8.3",
"pyarrow>=2.0.0",
]
DEV_REQUIRE = [
"flake8",
"black==21.10b0",
"isort>=5",
"mypy==0.790",
"build==0.7.0",
"twine==3.4.2",
"pytest>=6.0.0",
]
setup(
name="feast-postgres",
version="0.2.5",
author="Gunnar Sv Sigurbjörnsson",
author_email="[email protected]",
description="PostgreSQL registry, and online and offline store for Feast",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.7.0",
url="https://github.com/nossrannug/feast-postgres",
project_urls={
"Bug Tracker": "https://github.com/nossrannug/feast-postgres/issues",
},
license='Apache License, Version 2.0',
packages=["feast_postgres", "feast_postgres.online_stores", "feast_postgres.offline_stores"],
install_requires=INSTALL_REQUIRE,
extras_require={
"dev": DEV_REQUIRE,
},
keywords=("feast featurestore postgres offlinestore onlinestore"),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)