-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (52 loc) · 1.14 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
[tool.poetry]
name = "bookB116"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[[tool.poetry.source]]
name = 'default'
url = 'https://pypi.tuna.tsinghua.edu.cn/simple'
default = true
[tool.poetry.dependencies]
python = "^3.6.1"
cryptography = "^3.4"
Flask = "^1.1.1"
Flask-Cors = "^3.0.10"
Flask-Login = "^0.5.0"
Flask-SQLAlchemy = "^2.4.1"
Flask-WTF = "^0.14.3"
lxml = "^4.6.3"
mysql-connector-python = "^8.0.24"
PyYAML = "^5.4.1"
python-box = "^5.3.0"
python-dotenv = "^0.17.1"
uWSGI = { version="~2.0.19", optional=true }
Flask-Migrate = "^2.7.0"
oic = "^1.3.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
flake8 = "^3.9.1"
coverage = "^5.5"
autopep8 = "^1.5.7"
taskipy = "^1.7.0"
[tool.poetry.extras]
uwsgi = ["uWSGI"]
ws = ["websocket-client"]
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "-v"
filterwarnings = [
"ignore::DeprecationWarning"
]
[tool.coverage.run]
branch = true
source = ["bookB116"]
omit = [
"*email*"
]
[tool.taskipy.tasks]
test-cov = "coverage run -m pytest"
cov-report = "coverage report"
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"