forked from shobrook/rebound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.39 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
import sys
if sys.version_info[:3] < (3, 0, 0):
print("Requires Python 3 to run.")
sys.exit(1)
with open("README.md", encoding="utf-8") as file:
readme = file.read()
setup(
name="rebound-cli",
version="2.0.0",
description="Command-line tool that automatically fetches Stack Overflow results after compiler errors",
#long_description=readme,
#long_description_content_type="text/markdown",
url="https://github.com/shobrook/rebound",
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="stackoverflow stack overflow debug debugging error-handling compile errors error message cli search commandline",
include_package_data=True,
packages=["rebound"],
entry_points={"console_scripts": ["rebound = rebound.rebound:main"]},
install_requires=["BeautifulSoup4", "requests", "urllib3", "urwid"],
requires=["BeautifulSoup4", "requests", "urllib3", "urwid"],
python_requires=">=3",
license="MIT"
)