forked from cs50/check50
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 967 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 967 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
26
27
28
29
30
31
from setuptools import find_packages, setup
setup(
author="CS50",
author_email="sysadmins@cs50.harvard.edu",
classifiers=[
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Utilities"
],
description="This is check50, with which you can check solutions to problems for CS50.",
license="GPLv3",
message_extractors = {
'check50': [('**.py', 'python', None),],
},
install_requires=["attrs>=18", "bs4", "pexpect", "lib50>=1.0.1", "pyyaml", "requests", "termcolor"],
extras_require = {
"develop": ["sphinx", "sphinx_rtd_theme"]
},
keywords=["check", "check50"],
name="check50",
packages=["check50"],
python_requires=">= 3.6",
entry_points={
"console_scripts": ["check50=check50.__main__:main"]
},
url="https://github.com/cs50/check50",
version="3.0.0",
include_package_data=True
)