-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (39 loc) · 1.17 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("LICENSE", "r", encoding="utf-8") as fh:
license_content = fh.read()
setuptools.setup(
name="bhakti",
version='0.2.19',
author="vortezwohl",
author_email="vortez.wohl@gmail.com",
description="An easy-to-use vector database.",
long_description=long_description,
long_description_content_type="text/markdown",
license=license_content,
url="https://github.com/vortezwohl/Bhakti",
project_urls={
"Bug Tracker": "https://github.com/vortezwohl/Bhakti/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
],
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
python_requires=">=3.10",
install_requires=[
'dipamkara',
'colorama>=0.4.6',
'argparse>=1.4.0',
'PyYAML>=6.0.2'
],
entry_points={
'console_scripts': [
'bhakti = bhakti.bootstrap.bhakti_server:bhakti_entry_point'
]
},
include_package_data=False
)