-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 995 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 995 Bytes
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
[tool.poetry]
name = "credify"
version = "2.0.0"
description = "Elite Private Blockchain Verifiable Credential System with ZKP & IPFS"
authors = ["Somapuram Uday", "Shashi Kiran", "Teja Varshith"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
flask = "^3.0.0"
werkzeug = "^3.0.0"
cryptography = "^41.0.0"
ipfshttpclient = "^0.8.0"
pypdf2 = "^3.0.1"
pyotp = "^2.9.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-flask = "^1.3.0"
black = "^23.9.0"
flake8 = "^6.1.0"
[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| venv
| build
| dist
)/
'''
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --cov=app --cov=core --cov-report=html --cov-report=term"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"