-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
124 lines (117 loc) · 3.04 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[tool.poetry]
name = "ywh2bt"
version = "2.10.0"
description = "ywh2bt - YesWeHack to Bug Tracker"
readme = "README.md"
authors = ["m.honel <[email protected]>"]
maintainers = ["YesWeHack <[email protected]>"]
repository = "https://github.com/yeswehack/ywh2bugtracker"
classifiers = [
"Environment :: Console",
"Intended Audience :: Customer Service",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Bug Tracking",
"Typing :: Typed",
]
packages = [
{ include = "ywh2bt" },
]
exclude = [
"ywh2bt/tests",
]
[tool.poetry.dependencies]
python = ">=3.7.0,<3.13"
aiohttp = [
{ version="^3.8.0", python = "<3.8" },
{ version="^3.9.0", python = ">=3.8" },
]
aiosnow = "^0.6.0"
beautifulsoup4 = "^4.9.3"
html2text = "^2020.1.16"
jira = [
{ version="~3.2.0", python = "<3.8" },
{ version="^3.5.0", python = ">=3.8" },
]
lxml = "^4.5.2"
markdown = [
{ version="^3.3.3", python = "<3.8" },
{ version="^3.0.0", python = ">=3.8" },
]
PyGithub = "^1.53"
python-gitlab = "^2.5.0"
requests = "^2.24.0"
requests-toolbelt = "^0.9.1"
"ruamel.yaml" = "~0.16.12"
singledispatchmethod = "^1.0"
typing-extensions = "*"
types-Markdown = "*"
types-chardet = "*"
types-requests = "*"
types-setuptools = "*"
tomlkit = "^0.7.0"
urllib3 = "<=1.26.15"
setuptools = { version="^69.0.2", python = ">=3.12" }
pyside6 = [
{ version="^6.5.0", python = "<3.12", optional = true },
{ version="^6.6.0", python = ">=3.12", optional = true },
]
frozenlist = [
{ version="^1.3.0", python = "<3.8" },
{ version="^1.4.0", python = ">=3.8" },
]
yeswehack = ">=0.8.7"
[tool.poetry.extras]
gui = ["pyside6"]
[tool.poetry.dev-dependencies]
mypy =[
{ version="^1.0", extras = ["dmypy"], python = "<3.12" },
{ version="^1.8", extras = ["dmypy"], python = ">=3.12" },
]
tox =[
{ version="^3.20.1", python = "<3.8" },
{ version="^4.0.0", python = ">=3.8" },
]
flake8 = [
{ version="^5.0.4", python = "<3.12" },
{ version="^6.0.0", python = ">=3.12" },
]
black = "^22.10.0"
flake8-logging-format = "^0.9.0"
unittest-xml-reporting = "^3.2.0"
isort = [
{ version="^5.11.0", python = "<3.8" },
{ version="^5.12.0", python = ">=3.8" },
]
flake8-tidy-imports = [
{ version="^4.9.0", python = "<3.8" },
{ version="^4.10.0", python = ">=3.8" },
]
[tool.poetry.scripts]
ywh2bt = "ywh2bt.cli.main:run"
ywh2bt-gui = "ywh2bt.gui.main:run"
[build-system]
requires = [
"poetry>=0.12"
]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
exclude = "ywh2bt/gui/resources\\.py$"
[tool.isort]
profile = "black"
multi_line_output = 3
force_grid_wrap = 2
lines_after_imports = 2
include_trailing_comma = true
line_length = 120
skip = [
"ywh2bt/gui/resources.py",
]