forked from gazorby/strawberry-sqlalchemy-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (65 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
[tool.poetry]
name = "aio-strawberry-sqlalchemy-mapper"
version = "0.8.1"
description = "Automatically generate fields for strawberry types from SQLAlchemy models."
authors = [
"Expedock Software, Inc <[email protected]>",
"gazorby <[email protected]>",
]
packages = [{ include = "strawberry_sqlalchemy_mapper", from = "src" }]
maintainers = ["gazorby <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/gazorby/strawberry-sqlalchemy-mapper"
documentation = "https://github.com/gazorby/strawberry-sqlalchemy-mapper"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
]
keywords = ["graphql", "sqlalchemy", "pydantic", "model"]
[tool.poetry.dependencies]
python = "^3.7"
SQLAlchemy = { extras = ["asyncio"], version = "^1.4.39" }
pydantic = ">=1.9.1"
strawberry-graphql = ">=0.95"
importlib-metadata = ">=4.11.1"
sentinel = "^1.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
hypothesis = "^6.52.4"
aiosqlite = "^0.17.0"
pytest-asyncio = "^0.19.0"
pytest-emoji = "^0.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-s --emoji"
asyncio_mode = "auto"
testpaths = ["tests/"]
norecursedirs = ["dist", "build"]
[tool.pycln]
all = true
[tool.isort]
src_paths = ["applembic", "tests"]
profile = "black"
indent = 4
combine_star = true
combine_as_imports = true
lines_after_imports = 2
known_pytest = ["pytest"]
known_first_party = ["strawberry_sqlalchemy_mapper"]
sections = [
"FUTURE",
"STDLIB",
"PYTEST",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]
[tool.autopub]
git-username = "gazorby"
git-email = "[email protected]"
project-name = "aio-strawberry-sqlalchemy-mapper"