-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
92 lines (82 loc) · 2.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nameko-sqlalchemy"
version = "2.0.0"
description = "SQLAlchemy dependency for nameko services"
license = {file = "LICENSE.txt"}
readme = "README.rst"
requires-python = ">=3.8"
authors = [{name="onefinestay", email="[email protected]"}]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"nameko>=2.0.0",
"sqlalchemy>=1.4,<2"
]
[project.urls]
Homepage = "https://github.com/onefinestay/nameko-sqlalchemy"
[project.optional-dependencies]
dev = [
"coverage==7.3.2",
"isort==5.12.0",
"mypy==1.7.1",
"pytest==7.4.3",
"requests==2.31.0",
"ruff==0.1.6",
"PyMySQL==1.1.0",
"types-mock==5.1.0.3",
"types-requests==2.31.0.10",
]
[project.entry-points."pytest11"]
nameko_sqlalchemy = "nameko_sqlalchemy.pytest_fixtures"
[tool.setuptools]
include-package-data = true
zip-safe = true
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = [
"nameko_sqlalchemy/",
"test/",
]
known_first_party = "nameko_chassis"
[tool.ruff]
extend-exclude = [
".venv",
"migrations",
]
ignore = [
"E402",
"E501",
]
select = [
"E",
"F",
"W",
]
[tool.mypy]
python_version = "3.10"
plugins = "sqlalchemy.ext.mypy.plugin"
mypy_path = "nameko_sqlalchemy/"
namespace_packages = true
no_implicit_optional = true
no_implicit_reexport = true
strict_equality = true
warn_redundant_casts = true
ignore_missing_imports = true
[tool.pytest.ini_options]
norecursedirs = [".git", ".tox", "dist", "build"]
testpaths = ["test"]