-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
53 lines (48 loc) · 1.69 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os
from setuptools import find_packages
from setuptools import setup
folder = os.path.dirname(__file__)
version_path = os.path.join(folder, "src", "autocoder", "version.py")
__version__ = None
with open(version_path) as f:
exec(f.read(), globals())
req_path = os.path.join(folder, "requirements.txt")
install_requires = []
if os.path.exists(req_path):
with open(req_path, 'r') as fp:
install_requires = [line.strip() for line in fp]
readme_path = os.path.join(folder, "README.md")
readme_contents = ""
if os.path.exists(readme_path):
with open(readme_path, 'r') as fp:
readme_contents = fp.read().strip()
setup(
name="auto-coder",
version=__version__,
description="AutoCoder: AutoCoder",
author="allwefantasy",
long_description=readme_contents,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'auto-coder = autocoder.auto_coder:main',
'auto-coder.core = autocoder.auto_coder:main',
'chat-auto-coder = autocoder.chat_auto_coder:main',
'auto-coder.chat = autocoder.chat_auto_coder:main',
'auto-coder-serve = autocoder.auto_coder_server:main',
'auto-coder.serve = autocoder.auto_coder_server:main',
'auto-coder.rag = autocoder.auto_coder_rag:main',
],
},
package_dir={"": "src"},
packages=find_packages("src"),
package_data={
},
install_requires=install_requires,
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
requires_python=">=3.9",
)