forked from SynoCommunity/spkrepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (72 loc) · 1.88 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
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "spkrepo"
version = "0.1.0"
description = "Synology Package Repository"
license = "MIT"
authors = ["Antoine Bertin <[email protected]>"]
readme = "README.md"
repository = "https://github.com/SynoCommunity/spkrepo"
keywords = ["synology", "package", "repository"]
homepage = "https://synocommunity.com"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: System :: Archiving :: Packaging",
]
[tool.poetry.dependencies]
python = "^3.7"
flask = "^1.1.2"
flask-sqlalchemy = "^2.4.1"
flask-security = "^3.0.0"
passlib = "^1.7.2"
flask-babelex = "^0.9.4"
flask-wtf = "^0.14.3"
flask-mail = "^0.9.1"
configparser = "^5.0.0"
email_validator = "^1.1.1"
flask-principal = "^0.4.0"
flask-admin = "^1.5.6"
sqlalchemy = "^1.3.17"
pillow = "^7.1.2"
flask-restful = "^0.3.8"
flask-login = "^0.5.0"
flask-caching = "^1.8.0"
redis = "^3.5.2"
python-gnupg = "^0.4.6"
requests = "^2.23.0"
click = "^7.1.2"
flask-migrate = "^2.5.3"
alembic = "^1.4.2"
flask-script = "^2.0.6"
text-unidecode = "^1.3"
ipaddress = "^1.0.23"
flask-debugtoolbar = "^0.11.0"
bcrypt = "^3.1.7"
[tool.poetry.dev-dependencies]
sphinx = "^3.0.3"
sphinx-rtd-theme = "^0.4.3"
flask-testing = "^0.8.0"
factory-boy = "^2.12.0"
faker = "^4.1.0"
lxml = "^4.5.1"
urltools = "^0.3.2"
mock = "^4.0.2"
pre-commit = "^2.4.0"
pytest = "^5.4.2"
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = "spkrepo"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"