mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
5ac676711a
- Fixes #3809 Signed-off-by: Dan Ryan <dan@danryan.co>
51 lines
950 B
TOML
51 lines
950 B
TOML
[build-system]
|
|
requires = ['setuptools>=40.8.0', 'wheel>=0.33.0']
|
|
|
|
[tool.black]
|
|
line-length = 90
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.pyre_configuration
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)
|
|
'''
|
|
|
|
[tool.towncrier]
|
|
package = 'fake-package'
|
|
package_dir = 'src'
|
|
filename = 'CHANGELOG.rst'
|
|
directory = 'news/'
|
|
title_format = '{version} ({project_date})'
|
|
issue_format = '`#{issue} <https://github.com/sarugaku/fake_package/issues/{issue}>`_'
|
|
template = 'tasks/CHANGELOG.rst.jinja2'
|
|
|
|
[[tool.towncrier.type]]
|
|
directory = 'feature'
|
|
name = 'Features'
|
|
showcontent = true
|
|
|
|
[[tool.towncrier.type]]
|
|
directory = 'bugfix'
|
|
name = 'Bug Fixes'
|
|
showcontent = true
|
|
|
|
[[tool.towncrier.type]]
|
|
directory = 'trivial'
|
|
name = 'Trivial Changes'
|
|
showcontent = false
|
|
|
|
[[tool.towncrier.type]]
|
|
directory = 'removal'
|
|
name = 'Removals and Deprecations'
|
|
showcontent = true
|