-
Notifications
You must be signed in to change notification settings - Fork 919
/
setup.py
executable file
·31 lines (30 loc) · 1.21 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
if __import__("os").name == "nt":
raise RuntimeError("submit50 does not support Windows directly. Instead, you should install the Windows Subsystem for Linux (https://docs.microsoft.com/en-us/windows/wsl/install-win10) and then install submit50 within that.")
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.",
long_description="This is submit50, with which you can submit solutions to problems for CS50.",
install_requires=["lib50>=3,<4", "packaging", "requests>=2.19", "setuptools", "termcolor>=1.1"],
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.1.5",
include_package_data=True
)