-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 992 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
31
32
33
from setuptools import setup, find_packages
setup(
name="action",
version="0.1.0",
license="Apache-2.0",
author="Giovanni Vigna",
author_email="[email protected]",
maintainer="Gabriel Pizarro",
maintainer_email="[email protected]",
description="",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
"neo4j ~= 5.0",
"kombu ~= 5.0",
"openai ~= 1.54",
"mattermostdriver ~= 7.3",
"litellm == 1.55"
],
url="https://github.com/action-ai-institute/ai-stack",
project_urls={
"Homepage": "https://github.com/action-ai-institute/ai-stack",
"Issues": "https://github.com/action-ai-institute/ai-stack/issues",
},
packages=find_packages(where='src'),
package_dir={'': 'src'},
)