forked from n0nSmoker/SQLAlchemy-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 977 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 977 Bytes
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
[tool.poetry]
name = "sqlalchemy-serializer"
version = "1.4.22"
description = "Mixin for SQLAlchemy models serialization without pain"
authors = ["yuri.boiko <yuri.boiko.dev@gmail.com>"]
license = "MIT"
readme = "README.md"
include = [
"README.md",
"LICENSE",
"sqlalchemy_serializer/**"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
keywords = ["sqlalchemy", "serialize", "to_dict", "JSON"]
repository = "https://github.com/n0nSmoker/SQLAlchemy-serializer"
[tool.poetry.dependencies]
python = "*"
SQLAlchemy = "*"
psycopg2-binary = "*"
pytz = "*"
setuptools = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
pylama = "*"
requests = "*"
black = "*"
pytest-mock = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-xvrs --color=yes"
log_cli = true