-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (71 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
83 lines (71 loc) · 1.74 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
[build-system]
requires = [
"poetry_core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "betterRest"
version = "1.1.3"
description = "Awesome minimalist command line ticket/bug tracker based on ReStructuredText (former bugrest)"
authors = [
"fdev31 <fdev31@gmail.com>",
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/fdev31/bugrest"
classifiers = [
"Environment :: Console",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
packages = [
{ include = "betterRest" },
{ include = "betterRest/*.css" },
{ include = "betterRest_jira" },
{ include = "betterRest_jira_example" },
{ include = "betterRest_impress" },
]
[tool.poetry.scripts]
br = "betterRest.cli:commandline"
[tool.poetry.dependencies]
docutils = "^0.19"
python = "^3.10.10"
[tool.poetry.dependencies.python-dateutil]
version = "^2.8.2"
optional = true
[tool.poetry.dependencies.jira]
version = "^3.1.1"
optional = true
[tool.poetry.dependencies.six]
version = "^1.16.0"
optional = true
[tool.poetry.dependencies.pygments]
version = "^2.14.0"
optional = true
[tool.poetry.extras]
jira = [
"jira",
"six",
]
color = [
"pygments",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
strict = false
plugins = "pydantic.mypy"
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
warn_unreachable = true