-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 804 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 804 Bytes
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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 8):
print("Suggest to use Python >= 3.8")
setup(
name="pyepsilla",
version=open("./pyepsilla/vectordb/version.py").read().split('"')[-2],
keywords="epsilla",
author="Epsilla Team",
author_email="info@epsilla.com",
description="Epsilla Python SDK",
long_description="Epsilla Python SDK",
license="Apache License",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=["requests", "sentry_sdk", "posthog", "pydantic"],
url="https://github.com/epsilla-cloud/epsilla-python-client",
project_urls={
"Source": "https://github.com/epsilla-cloud/epsilla-python-client",
},
)