|
| 1 | +[tool.poetry] |
| 2 | +name = "django-pgviews-redux" |
| 3 | +version = "0.9.5" |
| 4 | +description = "Create and manage Postgres SQL Views in Django" |
| 5 | +authors = [ "Mikuláš Poul <[email protected]>"] |
| 6 | +readme = "README.md" |
| 7 | +packages = [{include = "django_pgviews"}] |
| 8 | +classifiers = [ |
| 9 | + "Development Status :: 5 - Production/Stable", |
| 10 | + "Programming Language :: Python", |
| 11 | + "Programming Language :: Python :: 3", |
| 12 | + "Programming Language :: Python :: 3.8", |
| 13 | + "Programming Language :: Python :: 3.9", |
| 14 | + "Programming Language :: Python :: 3.10", |
| 15 | + "Programming Language :: Python :: 3.11", |
| 16 | + "Programming Language :: Python :: 3.12", |
| 17 | + "Framework :: Django", |
| 18 | + "Framework :: Django :: 4.2", |
| 19 | + "Framework :: Django :: 5.0", |
| 20 | + "License :: Public Domain", |
| 21 | + "License :: OSI Approved :: The Unlicense (Unlicense)", |
| 22 | +] |
| 23 | +include = ["UNLICENSE"] |
| 24 | +repository = "https://github.com/xelixdev/django-pgviews-redux" |
| 25 | +keywords = ["django", "views", "materialized views", "postgres"] |
| 26 | + |
| 27 | +[build-system] |
| 28 | +requires = ["poetry-core"] |
| 29 | +build-backend = "poetry.core.masonry.api" |
| 30 | + |
| 31 | +[tool.poetry.dependencies] |
| 32 | +python = ">=3.6" |
| 33 | + |
1 | 34 | [tool.ruff]
|
2 | 35 | line-length = 120
|
3 | 36 | target-version = "py38"
|
4 | 37 |
|
5 |
| - |
6 | 38 | [tool.ruff.lint]
|
7 | 39 | select = [
|
8 | 40 | # https://github.com/charliermarsh/ruff#pyflakes-f
|
|
0 commit comments