-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.01 KB
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
from setuptools import setup
setup(
name='cogdb',
version='4.0.1',
description='Persistent Embedded Graph Database',
url='https://github.com/arun1729/cog',
project_urls={
'Homepage': 'https://cogdb.io',
'Source': 'https://github.com/arun1729/cog',
'Documentation': 'https://cogdb.io',
},
author='Arun Mahendra',
author_email='hello@cogdb.io',
license='MIT',
packages=['cog'],
install_requires=[
'xxhash==3.8.1',
'simsimd==6.5.16',
'websocket-client==1.9.0',
'certifi==2026.7.22',
],
extras_require={
'dev': ['pytest==8.4.2', 'pytest-cov==7.1.0'],
},
python_requires='>=3.9',
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)