-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (68 loc) · 1.79 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 = "sketch_converter"
version = "0.1.1"
description = "Converter your picture into sketch with just one line of command"
authors = ["Onuralp SEZER <thunderbirdtr@fedoraproject.org>","Samyak Jain <samyak.jn11@gmail.com>",]
maintainers = [
"Samyak Jain <samyak.jn11@gmail.com>",
"Onuralp SEZER <thunderbirdtr@fedoraproject.org>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/samyak-jn/sketch-converter"
repository = "https://github.com/samyak-jn/sketch-converter"
documentation = "https://github.com/samyak-jn/sketch-converter/blob/main/README.md"
packages = [{include = "sketch_converter"}]
keywords = ["opencv","sketch-converter","sketch","camera","image"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.7.0"
opencv-python = "^4.7.0.72"
numpy = "^1.24.3"
colorama = "^0.4.6"
commonmark = "^0.9.1"
pygments = "^2.15.1"
rich = "^13.3.4"
shellingham = "^1.5.0.post1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
black = "^22.12.0"
mypy = "^0.991"
requests = "^2.28.2"
ruff = "^0.0.238"
[tool.bandit]
tests = ["B201", "B301"]
[tool.isort]
line_length = 79
profile = "black"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
sketch-converter = "sketch_converter.cli:app"