-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
45 lines (43 loc) · 1.44 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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="[email protected]",
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",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"autopep8>=2.1.0",
"clang-format>=18.1.2",
"icdiff",
"jsbeautifier",
"pycodestyle==2.12.0",
"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",
"style50-cli=style50.__main__:main",
]
},
url="https://github.com/cs50/style50",
version="2.10.4",
include_package_data=True,
)