-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.06 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "github_jira_sync_app"
authors = [{name = "Maksim Beliaev", email = "beliaev.m.s@gmail.com"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
description = "FastAPI server to serve GitHub bot that synchronizes issues from GitHub to Jira"
dynamic = ["version"]
dependencies = [
"fastapi==0.115.6",
"redis==6.1.0",
"pyyaml==6.0.2",
"pygithub==2.5.0",
"uvicorn[standard]==0.34.0",
"load_dotenv==0.1.0",
"jira==3.10.5",
"mistletoe==1.0.1",
"types-PyYAML",
"opentelemetry-exporter-prometheus==0.55b1",
"opentelemetry-sdk==1.34.1",
"opentelemetry-instrumentation-fastapi==0.55b1",
"opentelemetry-exporter-otlp==1.34.1"
]
# development dependencies
[project.optional-dependencies]
test = [
"pre-commit",
"pytest",
"coverage >= 6.0.0",
"pytest-cov",
"mypy",
"httpx",
"tox",
"responses"
]
deploy = [
"flit==3.7.1",
]
[tool.mypy]
exclude = "tests"