All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 # Copyright (C) 2020 Łukasz Langa
2 from setuptools import setup
6 assert sys.version_info >= (3, 6, 2), "black requires Python 3.6.2+"
7 from pathlib import Path # noqa E402
9 CURRENT_DIR = Path(__file__).parent
10 sys.path.insert(0, str(CURRENT_DIR)) # for setuptools.build_meta
13 def get_long_description() -> str:
15 (CURRENT_DIR / "README.md").read_text(encoding="utf8")
17 + (CURRENT_DIR / "CHANGES.md").read_text(encoding="utf8")
22 # To compile with mypyc, a mypyc checkout must be present on the PYTHONPATH
23 if len(sys.argv) > 1 and sys.argv[1] == "--use-mypyc":
26 if os.getenv("BLACK_USE_MYPYC", None) == "1":
31 "src/black/__init__.py",
32 "src/blib2to3/pytree.py",
33 "src/blib2to3/pygram.py",
34 "src/blib2to3/pgen2/parse.py",
35 "src/blib2to3/pgen2/grammar.py",
36 "src/blib2to3/pgen2/token.py",
37 "src/blib2to3/pgen2/driver.py",
38 "src/blib2to3/pgen2/pgen.py",
41 from mypyc.build import mypycify
43 opt_level = os.getenv("MYPYC_OPT_LEVEL", "3")
44 ext_modules = mypycify(mypyc_targets, opt_level=opt_level)
51 "write_to": "src/_black_version.py",
52 "write_to_template": 'version = "{version}"\n',
54 description="The uncompromising code formatter.",
55 long_description=get_long_description(),
56 long_description_content_type="text/markdown",
57 keywords="automation formatter yapf autopep8 pyfmt gofmt rustfmt",
58 author="Łukasz Langa",
59 author_email="lukasz@langa.pl",
60 url="https://github.com/psf/black",
61 project_urls={"Changelog": "https://github.com/psf/black/blob/master/CHANGES.md"},
63 py_modules=["_black_version"],
64 ext_modules=ext_modules,
65 packages=["blackd", "black", "blib2to3", "blib2to3.pgen2", "black_primer"],
66 package_dir={"": "src"},
68 "blib2to3": ["*.txt"],
69 "black": ["py.typed"],
70 "black_primer": ["primer.json"],
72 python_requires=">=3.6.2",
78 "typed-ast>=1.4.2; python_version < '3.8'",
80 "pathspec>=0.8.1, <1",
81 "dataclasses>=0.6; python_version < '3.7'",
82 "typing_extensions>=3.7.4; python_version < '3.8'",
83 "mypy_extensions>=0.4.3",
86 "d": ["aiohttp>=3.3.2", "aiohttp-cors"],
87 "colorama": ["colorama>=0.4.3"],
88 "python2": ["typed-ast>=1.4.2"],
90 test_suite="tests.test_black",
92 "Development Status :: 4 - Beta",
93 "Environment :: Console",
94 "Intended Audience :: Developers",
95 "License :: OSI Approved :: MIT License",
96 "Operating System :: OS Independent",
97 "Programming Language :: Python",
98 "Programming Language :: Python :: 3.6",
99 "Programming Language :: Python :: 3.7",
100 "Programming Language :: Python :: 3.8",
101 "Programming Language :: Python :: 3.9",
102 "Programming Language :: Python :: 3 :: Only",
103 "Topic :: Software Development :: Libraries :: Python Modules",
104 "Topic :: Software Development :: Quality Assurance",
108 "black=black:patched_main",
109 "blackd=blackd:patched_main [d]",
110 "black-primer=black_primer.cli:main",