forked from tiangolo/pydantic-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (30 loc) · 913 Bytes
/
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
[tool.poetry]
name = "pydantic-sqlalchemy"
version = "0"
description = "Tools to convert SQLAlchemy models to Pydantic models"
authors = ["Sebastián Ramírez <tiangolo@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6"
sqlalchemy = "^1.3.16"
pydantic = "^1.5.1"
# Local development dependencies
jupyter = {version = "^1.0.0", optional = true, extras = ["dev"]}
autoflake = {version = "^1.3.1", optional = true, extras = ["dev"]}
flake8 = {version = "^3.7.9", optional = true, extras = ["dev"]}
[tool.poetry.dev-dependencies]
mypy = "^0.770"
black = "^19.10b0"
isort = "^4.3.21"
pytest = "^5.4.1"
sqlalchemy-stubs = "^0.3"
pytest-cov = "^2.8.1"
sqlalchemy-utc = "^0.10.0"
[tool.poetry.extras]
dev = ["autoflake", "flake8", "jupyter"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-version-plugin]
source = "init"