File: pyproject.toml

package info (click to toggle)
python-croniter 6.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 408 kB
  • sloc: python: 3,912; makefile: 20; sh: 19
file content (17 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tool.black]
line-length = 119
target-version = [
  # XXX: This project does still support 2.6, but black does not have a 2.6
  # target. There should be very few (if any) syntax differences between the
  # two versions however.
  'py27',
  'py34',
  'py35',
  'py36',
  'py37',
  'py38',
  'py39',
  'py310',
  # Because we're using an old version of black to support older python, there
  # is no explicit python version target past 3.10
]