forked from intelligentnode/Intelli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 944 Bytes
/
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
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.6",
author="Intellinode",
author_email="admin@intellinode.ai",
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"],
}
)