-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (47 loc) · 1.57 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
from setuptools import setup, find_packages
setup(
name='kgraphgen',
version='0.0.2',
author='Marc Hadfield',
author_email='[email protected]',
description='KGraph Generate',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/vital-ai/kgraphgen',
packages=find_packages(exclude=["test", "test_data", "test_data_internal", "test_output", "test_docbin"]),
license='Apache License 2.0',
install_requires=[
'requests>=2.31.0',
'vital-ai-vitalsigns>=0.1.26',
'vital-ai-domain>=0.1.4',
'six',
'pyyaml',
'vital-ai-haley-kg>=0.1.4',
'kgraphmemory>=0.0.5',
'kgraphservice>=0.0.6',
'vital-agent-kg-utils>=0.1.0',
'rdflib==7.0.0',
'SPARQLWrapper==2.0.0',
'networkx',
'matplotlib',
'langchain>=0.1.20',
'openai>=1.28.0',
'langchain-openai>=0.1.6',
# 'openapi-schema-pydantic==1.2.4',
'pydantic>=1.10.12',
'scikit-learn>=1.4.2',
'sentence_transformers==2.7.0',
'hdbscan==0.8.33',
'pandas==2.2.2',
'numpy==1.26.4',
'beautifulsoup4==4.12.3',
'wikipedia-api==0.6.0',
'spacy==3.7.4'
],
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)