-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.89 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
[project]
name = "solid-sold"
version = "0.0.1"
description = "SOLID implementation of advanced repository patterns in Python."
requires-python = ">=3.9"
authors = [
{ name="Ali Aliyev", email="[email protected]" },
]
readme = "README.md"
keywords = [
"solid",
"repository",
"design pattern",
"data access layer",
"python",
"transaction management",
"type safety",
"database abstraction",
"asyncio",
"CRUD operations"
]
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: AsyncIO',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities']
dependencies = [
"aiosqlite>=0.20.0",
"typing_extensions",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"wheel",
"twine",
"build",
"pytest",
"pytest-cov",
"mypy"
]
[tool.setuptools]
packages = ["solid_sold"]
[project.urls]
"Homepage" = "https://github.com/aliev/solid-sold"
"Bug Tracker" = "https://github.com/aliev/solid-sold/issues"
[tool.isort]
profile = "black"
[tool.mypy]
warn_no_return = false
disallow_untyped_defs = false
allow_redefinition = true
[tool.flake8]
max-line-length = 120
extend-select = "B950"
extend-ignore = "E203,E501,E701"
[tool.pytest.ini_options]
addopts = "-s --strict-markers -vv --cache-clear --maxfail=1 --cov=aioshutdown --cov-report=term --cov-report=html --cov-branch --no-cov-on-fail"