-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.07 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
[tool.poetry]
name = "developer-dashboard"
version = "0.1.0"
description = "A dashboard for developer to keep track of the developer velocity and the current burn down state of every task in the pipeline."
authors = ["aricma <adrian@aricma.com>"]
readme = "README.md"
packages = [
{ include = "server" },
{ include = "business_logic" },
{ include = "web_interface" },
]
[tool.poetry.dependencies]
python = ["<=3.11", ">=3.8"]
jira = { extras = ["cli"], version = "^3.5.2" }
humanize = "^4.9.0"
fastapi = "^0.105.0"
uvicorn = { extras = ["standard"], version = "^0.25.0" }
pyyaml = "^6.0.1"
pyjwt = "^2.8.0"
python-multipart = "^0.0.6"
beautifulsoup4 = "^4.12.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.11"
mypy = "^1.8.0"
types-beautifulsoup4 = "^4.12.0.20240106"
types-pyyaml = "^6.0.12.12"
faker = "^22.0.0"
pytest = "^7.4.4"
types-pygments = "^2.17.0.20240106"
types-colorama = "^0.4.15.20240106"
types-python-dateutil = "^2.8.19.20240106"
types-setuptools = "^69.0.0.20240106"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"