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 # Example configuration for Black.
3 # NOTE: you have to use single-quoted strings in TOML for regular expressions.
4 # It's the equivalent of r-strings in Python. Multiline strings are treated as
5 # verbose regular expressions by Black. Use [ ] to denote a significant space
10 target-version = ['py36', 'py37', 'py38']
25 # The following are specific to Black, you probably don't want those.
33 # Poetry package information below.
34 # NOTE: You don't need this in your own Black configuration.
39 description = "The uncompromising code formatter."
42 "Łukasz Langa <lukasz@langa.pl>",
43 "Carol Willing <carolcode@willingconsulting.com>",
44 "Carl Meyer <carl@oddbird.net>",
45 "Jelle Zijlstra <jelle.zijlstra@gmail.com>",
46 "Mika Naylor <mail@autophagy.io>",
47 "Zsolt Dollenstein <zsol.zsol@gmail.com>",
49 homepage = "https://github.com/psf/black/"
50 documentation = "https://black.readthedocs.io/en/stable/"
52 keywords = ["automation", "formatter", "yapf", "autopep8", "gofmt"]
54 "Development Status :: 4 - Beta",
55 "Environment :: Console",
56 "Intended Audience :: Developers",
57 "Operating System :: OS Independent",
58 "Topic :: Software Development :: Libraries :: Python Modules",
59 "Topic :: Software Development :: Quality Assurance",
63 {include = "black.py"},
64 {include = "blib2to3"}
69 # blackd = "blackd:main" # TODO: how to make this only appear on `poetry install -E d`?
71 [tool.poetry.dependencies]
77 aiohttp = { version = "^3.4", optional = true }
83 [tool.poetry.dev-dependencies]
88 flake8-bugbear = "^18.2"
91 readme_renderer = "^21.0"
92 recommonmark = "^0.4.0"