-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
33 lines (31 loc) · 1.02 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
from setuptools import setup, find_packages
with open("PIPREADME.md", "r", encoding="utf-8") as fh:
pip_description = fh.read()
setup(
name="intelli",
version="0.5.7",
author="Intellinode",
author_email="[email protected]",
description="Build your chatbot or AI agent with Intellinode – we make every model smarter.",
long_description=pip_description,
long_description_content_type="text/markdown",
url="https://www.intellinode.ai/",
project_urls={
"Source Code": "https://github.com/intelligentnode/Intelli",
},
packages=find_packages(exclude=["test", "test.*"]),
package_data={
'': ['*.in']
},
python_requires='>=3.6',
install_requires=[
"python-dotenv==1.0.1", "networkx==3.2.1",
],
extras_require={
"visual": ["matplotlib==3.6.0"],
"offline": ["keras-nlp", "keras>=3", "librosa", "keras-hub", "tensorflow-text"],
"llamacpp": [
"llama-cpp-python>=0.3.7", "huggingface_hub>=0.28.1"
],
}
)