-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (39 loc) · 993 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
39
40
41
42
43
44
45
[tool.poetry]
name = "alembic-enums"
version = "0.4.1"
description = "Support for migrating PostgreSQL enums with Alembic"
readme = "README.md"
homepage = "https://github.com/imankulov/alembic-enums"
repository = "https://github.com/imankulov/alembic-enums"
authors = ["Roman Imankulov <[email protected]>"]
packages = [
{ include = "alembic_enums" }
]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
]
include = [
"CHANGELOG.md"
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-xdist = "^3.0.2"
pytest-cov = "^4.0.0"
black = "^22.10.0"
flake8 = "^5.0.4"
coverage = "^6.5.0"
import-linter = "^1.4.0"
mkdocs-material = "^8.5.7"
mkdocstrings = "^0.19.0"
sqlalchemy = "^1.4.45"
alembic = "^1.9.0"
psycopg2-binary = "^2.9.5"
sqlalchemy-utils = "^0.38.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["tests", "alembic_enums"]