-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (50 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool]
[tool.poetry]
name = "vsot"
version = "0.1.4"
description = "VSOT - Django/jinja template formatter"
license = "MIT license"
keywords = ["vsot"]
classifiers = ["Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8"]
homepage = "https://github.com/benhowes/vsot"
authors = ["Ben Howes <[email protected]>"]
readme = "README.rst"
[tool.poetry.scripts]
vsot = "vsot.cli:main"
[tool.poetry.dependencies]
python = ">=3.6.1"
click = ">=7.0"
antlr4-python3-runtime = "==4.8"
pathspec = "^0.8.0"
dataclasses = { version = ">=0.6", python = "<3.7" }
[tool.poetry.dev-dependencies]
pre-commit = "^2.3.0"
black = "^19.10b0"
isort = "^4.3.21"
bump2version = "==1.0.0"
watchdog = "==0.10.2"
flake8 = "==3.7.9"
tox = "==3.14.6"
coverage = "*"
pytest = "5.4.2"
ipdb = "^0.13.2"
readme_renderer = "^26.0"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| setup
| vsot/antlr
)/
'''
[tool.vsot]
indent_size = 2