forked from cs50/submit50
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (28 loc) · 884 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
from setuptools import setup
setup(
author="CS50",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Utilities"
],
message_extractors = {
'submit50': [('**.py', 'python', None),],
},
description="This is submit50, with which you can submit solutions to problems for CS50.",
install_requires=["lib50>=1.1.4", "requests", "termcolor"],
keywords=["submit", "submit50"],
name="submit50",
python_requires=">=3.6",
license="GPLv3",
packages=["submit50"],
url="https://github.com/cs50/submit50",
entry_points={
"console_scripts": ["submit50=submit50.__main__:main"]
},
version="3.0.0",
include_package_data=True,
url="https://github.com/cs50/submit50",
)