-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 779 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 779 Bytes
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
from setuptools import setup
setup(
author="CS50",
author_email="sysadmins@cs50.harvard.edu",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development"
],
license="GPLv3",
description="This is help50, a command-line tool that helps students understand error messages.",
install_requires=["colorama", "termcolor", "lib50>=3,<4"],
keywords="help50",
name="help50",
packages=["help50"],
entry_points={
"console_scripts": ["help50=help50.__main__:main"]
},
py_requires="3.6",
url="https://github.com/cs50/help50",
version="3.0.5"
)