forked from FSoft-AI4Code/AgileCoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 637 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (24 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(name='agilecoder',
version='0.1.4',
description='AgileCoder',
url='https://github.com/FSoft-AI4Code/AgileCoder',
author='FSoft-AI4Code',
author_email='support.aic@fpt.com',
license='Apache-2.0',
python_requires=">=3.8",
include_package_data=True,
package_data={"agilecoder": ["CompanyConfig/*/*.json"]},
entry_points={
'console_scripts': ['agilecoder=agilecoder:main'],
},
install_requires=[
"openai==0.28.1",
"tiktoken",
"markdown",
"colorama",
"strsimpy==0.2.1",
"python-dotenv"
],
packages=find_packages(),
zip_safe=False)