-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (82 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
100 lines (82 loc) · 1.86 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "voteview-dev"
packages = [{include="vvtool", from="src"}]
version = "0.1.5"
description = "Voteview command-line interface"
authors = ["Adam Boche <aboche@ucla.edu>"]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.6"
click = "^6.0"
pymongo = "3.8"
mongoengine = "0.18.2"
pylint = "2.3"
alley = "0.0.3"
importlib_resources = "1.0"
attrs = "*"
[tool.poetry.dev-dependencies]
cuvner = "^18.0"
tox = "^3.13"
versioneer = "^0.18.0"
pex = "^1.6"
bump2version = "^0.5.10"
docutils = "^0.15.2"
readme-renderer = "^24.0"
isort = "^4.3"
mypy = "^0.720.0"
pytest-sphinx = "^0.2.2"
towncrier = "^19.2"
py-find-injection = "^0.1.1"
twine = "^1.13"
docshtest = "^0.0.2"
pytest-cov = "^2.7"
tox-docker = "^1.4"
q = "^2.6"
check-manifest = "^0.39.0"
pylint_mongoengine = "^0.3.3"
coverage = "^5.0"
pudb = "^2019.2"
[tool.poetry.scripts]
vvtool = "vvtool.cli:cli"
[tool.towncrier]
package = "vvtool"
package_dir = "src"
filename = "CHANGELOG.rst"
template = "changelog.d/towncrier_template.rst"
issue_format = "`#{issue} <https://github.com/voteview/voteview-dev/issues/{issue}>`_"
directory = "changelog.d"
title_format = "{version} ({project_date})"
underlines = ["-", "^"]
[[tool.towncrier.section]]
path = ""
[[tool.towncrier.type]]
directory = "breaking"
name = "Backward-incompatible Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "change"
name = "Changes"
showcontent = true
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.?venv
| _build
| buck-out
| build
| dist
)/
'''