forked from pinecone-io/pinecone-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (60 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
#
# Copyright (c) 2020-2021 Pinecone Systems Inc. All right reserved.
#
import os
import setuptools
long_desc = """# Pinecone
Pinecone is the vector database for machine learning applications. Build vector-based personalization, ranking, and search systems that are accurate, fast, and scalable. Use simple APIs with zero maintenance.
"""
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname), "r", encoding="utf-8") as fh:
return fh.read()
setuptools.setup(
name="pinecone-client",
version=read("pinecone/__version__").strip(),
description="Pinecone client and SDK",
license="Proprietary License",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://www.pinecone.io/",
project_urls={
"Homepage": "https://www.pinecone.io",
"Documentation": "https://pinecone.io/docs",
"Contact": "https://www.pinecone.io/contact/",
"End-User License Agreement": "https://www.pinecone.io/thin-client-user-agreement/"
},
author="Pinecone Systems, Inc.",
author_email="support@pinecone.io",
keywords="Pinecone vector database cloud",
packages=setuptools.find_packages(),
install_requires=read("requirements.txt"),
extras_require={
"grpc": read("requirements-grpc.txt"),
},
include_package_data=True,
python_requires=">=3.6",
entry_points={
'console_scripts': ['pinecone=pinecone.cli:main'],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)