forked from shobrook/wut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.11 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
import sys
from setuptools import setup
if sys.version_info[:3] < (3, 0, 0):
print("Requires Python 3 to run.")
sys.exit(1)
setup(
name="stackexplain",
version="1.5.0",
description="Command-line tool that automatically explains your error message using ChatGPT",
url="https://github.com/shobrook/stackexplain",
author="shobrook",
author_email="[email protected]",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Debuggers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
],
keywords="chatgpt cli commandline error message stack trace stackexplain explanation",
include_package_data=True,
packages=["stackexplain", "stackexplain.utilities"],
entry_points={"console_scripts": ["stackexplain = stackexplain.stackexplain:main"]},
install_requires=["revChatGPT", "pygments"],
requires=["revChatGPT", "pygments"],
python_requires=">=3",
license="MIT"
)