forked from cs50/style50
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.15 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.15 KB
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
if __import__("os").name == "nt":
raise RuntimeError("style50 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 style50 within that.")
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 style50, with which code can be checked against the CS50 style guide",
install_requires=["argparse", "autopep8>=1.4.3", "icdiff", "jsbeautifier", "python-magic", "termcolor", "jinja2>=2.10"],
dependency_links=["git+https://github.com/jeffkaufman/icdiff.git"],
keywords=["style", "style50"],
name="style50",
py_requires=">=3.6",
license="GPLv3",
packages=["style50", "style50.renderer"],
entry_points={
"console_scripts": ["style50=style50.__main__:main"],
},
url="https://github.com/cs50/style50",
version="2.7.4",
include_package_data=True,
)