-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 943 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
34
from setuptools import setup, find_packages
with open("README.md", encoding="utf8") as f:
long_description = f.read()
def main():
setup(
name="generate",
packages=find_packages(exclude=["tests*", "test_*", "*tests*"]),
version="1.0.0",
license="GNU",
description="Recursive Prompting",
long_description=long_description,
long_description_content_type="text/markdown",
author="Pranit Shah",
author_email="prsh006@gmail.com",
url="https://www.pranitshah.cyou",
download_url="https://github.com/pranitsh/generate",
keywords=["AI", "GPT4All", "Prompt Engineering"],
install_requires=[
"nltk==3.8.1",
"gpt4all==2.1.0",
],
entry_points={
"console_scripts": [
"generate=generator.__main__:main",
]
},
)
if __name__ == "__main__":
main()