-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (28 loc) · 872 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.4.2",
author="Intellinode",
author_email="admin@intellinode.ai",
description="Create your chatbot or AI agent using Intellinode. We make any 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(),
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"],
}
)