-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.06 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
[tool.poetry]
name = "pluploader"
version = "0.8.3"
description = "CLI Confluence/Jira Plugin uploader"
authors = ["Fabian Siegel <fabian@livelyapps.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/livelyapps/pluploader"
repository = "https://github.com/livelyapps/pluploader"
packages = [
{ include = "pluploader" },
]
[tool.poetry.scripts]
pluploader = 'pluploader.main:main'
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.24.0"
colorama = "^0.4.3"
configargparse = "^1.2.3"
furl = "^2.1.0"
PyYAML = "^6.0.1"
packaging = "^20.4"
importlib-metadata = "^4.8.1"
typer = "^0.3.2"
click_default_group = "^1.2.2"
beautifulsoup4 = "^4.9.3"
pydantic = "^1.6.1"
lxml = "^4.5.2"
html5lib = "^1.1"
rich = "^9.5.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pre-commit = "*"
flake8 = "^3.8.4"
jedi = "^0.17.2"
isort = "^5.5.4"
rope = "^0.17.0"
bpython = "^0.20"
debugpy = "^1.1.0"
[tool.black]
line-length = 127
target_version = ['py36']
include = '\.pyi?$'
[build-system]
requires = ["poetry>=1.1.0"]
build-backend = "poetry.masonry.api"