-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 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
52
53
[tool.poetry]
name = "mitama"
version = "4.3.0"
description = ""
authors = ["boke0 <[email protected]>"]
license = "MIT"
include = [
"mitama/portal/templates/*.html",
"mitama/portal/templates/**/*.html",
"mitama/portal/static/*",
"mitama/http/templates/*.html",
"mitama/http/static/*",
"mitama/app/static/*",
"mitama/skeleton/*",
"mitama/skeleton/**/*"
]
[tool.poetry.scripts]
mitama = 'mitama:command_exec'
[tool.poetry.dependencies]
python = "^3.6"
Jinja2 = "^2.11.3"
SQLAlchemy = "^1.3.23"
PyJWT = "^2.0.1"
bcrypt = "^3.2.0"
pysaml2 = "^6.5.1"
tzlocal = "^2.1"
watchdog = "^2.0.1"
python-magic = "^0.4.22"
jinja-markdown = "^1.200630"
Markdown = "^3.3.3"
Pillow = "^8.1.0"
pycryptodome = "^3.10.1"
pywebpush = "^1.11.0"
gevent = "^21.1.2"
gevent-websocket = "^0.10.1"
uWSGI = "^2.0.19"
[tool.poetry.dev-dependencies]
unittest = "^0.0"
flake8 = "^3.8.4"
isort = "^5.7.0"
black = "^20.8b1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"