-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
32 lines (24 loc) · 947 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
[tool.poetry]
name = "tortoise-data-migration"
version = "1.0.2"
description = "Tortoise migrations for data, not structure"
authors = ["Guillermo Manzato <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Ekumen-OS/tortoise-data-migration"
repository = "https://github.com/Ekumen-OS/tortoise-data-migration"
documentation = "https://github.com/Ekumen-OS/tortoise-data-migration"
keywords = ["migrations", "tortoise", "data-migrations"]
classifiers = [ "Development Status :: 4 - Beta", "Framework :: AsyncIO", "Intended Audience :: Developers", "Topic :: Database", "License :: OSI Approved :: MIT License"]
[flake8]
max-line-length = 88
[tool.poetry.dependencies]
python = "^3.8"
tortoise-orm = ">=0.17.5,<0.22"
[tool.poetry.dev-dependencies]
coverage = "^7.6"
pytest = "^8.3.3"
versionbump = "^1.1.1"
[build-system]
requires = ["poetry-core>=1.0.1"]
build-backend = "poetry.core.masonry.api"