-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 861 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 861 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
from setuptools import setup
setup(
name='cogdb',
version='3.7.5',
description='Persistent Embedded Graph Database',
url='http://github.com/arun1729/cog',
author='Arun Mahendra',
author_email='arunm3.141@gmail.com',
license='MIT',
packages=['cog'],
install_requires=['xxhash>=3.2.0', 'simsimd>=5.0.0', 'websocket-client>=1.9.0', 'certifi'],
extras_require={
'dev': ['pytest', 'pytest-cov'],
},
python_requires='>=3.8',
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)