-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.48 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
[tool.poetry]
name = "ticket-api"
version = "0.1.0"
description = "A service for managing emails coming in/out from/to a O365 mailbox and integrates them with Jira."
authors = ["Renato Damas <rena2damas@gmail.com>"]
license = "MIT"
readme = "README.rst"
packages = [
{ include = "*", from = "src" }
]
homepage = ""
repository = "https://github.com/codectl/ticket-api"
documentation = ""
keywords = [
"ticket-api",
"jira",
"O365",
"swagger",
"openapi",
"oas3",
"rest",
"api",
"web",
"flask",
"python",
"python3"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.dependencies]
apispec = { extras = ["marshmallow", "yaml"], version = "^6.1.0" }
apispec-plugins = "^0.2.0"
apispec-ui = "^0.1.4"
click = "^8.1.6"
flask = "^2.3.3"
flask-restful = "^0.3.10"
flask-sqlalchemy = "^3.0.5"
gunicorn = "^20.1.0"
jira = "^3.5.2"
mistune = "^3.0.1"
o365 = "^2.0.26"
o365-notifications = "^0.1.1"
python = "^3.9"
requests = "^2.31.0"
[tool.poetry.dev-dependencies]
coverage = "^7.3.0"
pre-commit = "^3.3.3"
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
requests-mock = "^1.11.0"
[tool.poetry.urls]
issues = "https://github.com/codectl/ticket-api/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"