-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.12 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
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "jdeskew"
description = "Document Image Skew Estimation using Adaptive Radial Projection"
authors = [{name = "Luan Pham", email = "[email protected]"}]
license = {file = "LICENSE"}
dependencies = [
"numpy",
"opencv-python-headless"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"pytest",
"coverage",
"pre-commit",
"pytest-xdist",
"fastapi",
"uvicorn[standard]",
"python-multipart",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [ "tests/test.png" ]