-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (29 loc) · 883 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='AutoTestGen',
version='0.1',
description='Automatic Unit Test generation using LLM',
long_description=long_description,
author='Giorgi Nozadze',
author_email='giorginozadze23@yahoo.com',
license='MIT',
url='https://github.com/LMU-Seminar-LLMs/AutoTestGen',
packages=find_packages(exclude=['demo', 'demo.*', 'AutoTestGen.tests', 'AutoTestGen.tests.*']),
# Entry point
entry_points={
"console_scripts": [
"autotestgen = AutoTestGen.gui:main"
]
},
install_requires=[
"openai",
"tiktoken",
"docker",
"python-dotenv",
"coverage"
],
package_data={"AutoTestGen": ["_run_tests_script.py"]},
python_requires='>=3.9'
)