-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (33 loc) · 1008 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
35
36
37
"""setup.py"""
from os.path import dirname, join, abspath
from setuptools import setup, find_packages
__DESCRIPTION = """Fully functional ChatGPT scraper"""
with open(
join(abspath(dirname(__file__)), "README.md"),
"r",
encoding="utf-8",
errors="ignore",
) as fp:
__LONG_DESCRIPTION = fp.read().lstrip().rstrip()
setup(
name="gptauto",
version="0.1.1",
author="st1vms",
author_email="[email protected]",
description=__DESCRIPTION,
long_description=__LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/st1vms/gptauto",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={'console_scripts':['ask-gpt=gptauto.cli.ask_gpt:main']},
python_requires=">=3.9",
install_requires=[
"selgym",
"selenium-wire",
],
)