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
24 # The following are specific to Black, you probably don't want those.
32 # Poetry package information below.
33 # NOTE: You don't need this in your own Black configuration.
38 description = "The uncompromising code formatter."
41 "Łukasz Langa <lukasz@langa.pl>",
42 "Carol Willing <carolcode@willingconsulting.com>",
43 "Carl Meyer <carl@oddbird.net>",
44 "Jelle Zijlstra <jelle.zijlstra@gmail.com>",
45 "Mika Naylor <mail@autophagy.io>",
46 "Zsolt Dollenstein <zsol.zsol@gmail.com>",
48 homepage = "https://github.com/ambv/black/"
49 documentation = "https://black.readthedocs.io/en/stable/"
51 keywords = ["automation", "formatter", "yapf", "autopep8", "gofmt"]
53 "Development Status :: 4 - Beta",
54 "Environment :: Console",
55 "Intended Audience :: Developers",
56 "Operating System :: OS Independent",
57 "Topic :: Software Development :: Libraries :: Python Modules",
58 "Topic :: Software Development :: Quality Assurance",
62 {include = "black.py"},
63 {include = "blib2to3"}
68 # blackd = "blackd:main" # TODO: how to make this only appear on `poetry install -E d`?
70 [tool.poetry.dependencies]
76 aiohttp = { version = "^3.4", optional = true }
81 [tool.poetry.dev-dependencies]
86 flake8-bugbear = "^18.2"
89 readme_renderer = "^21.0"
90 recommonmark = "^0.4.0"