forked from Monstermn96/gpt-pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 763 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
from setuptools import setup, find_packages
setup(
name="gpt-pilot",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
package_data={
"core": ["prompts/**/*", "templates/**/*"]
},
install_requires=[
line.strip()
for line in open("requirements.txt")
if line.strip() and not line.startswith("#") and not line.startswith("-r")
],
extras_require={
"dev": [
line.strip()
for line in open("requirements-dev.txt")
if line.strip() and not line.startswith("#") and not line.startswith("-r")
]
},
python_requires=">=3.11",
entry_points={
"console_scripts": [
"gpt-pilot=main:main",
],
}
)