-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.15 KB
/
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
46
47
[tool.poetry]
name = "django-scylla"
version = "0.0.10"
description = "Django Scylla"
authors = ["Rafał Furmański <r.furmanski@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "/~https://github.com/r4fek/django-scylla"
repository = "/~https://github.com/r4fek/django-scylla"
documentation = "https://django-scylla.readthedocs.io"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [{ include = "django_scylla" }]
[tool.poetry.urls]
Changelog = "/~https://github.com/r4fek/django-scylla/releases"
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.1 <4.2"
scylla-driver = "^3.25"
[tool.poetry.dev-dependencies]
black = {version = "*", allow-prereleases = true}
coverage = "*"
flake8 = "*"
flake8-bandit = "*"
flake8-blind-except = "*"
flake8-docstrings = "*"
flake8-logging-format = "*"
flake8-print = "*"
freezegun = "*"
isort = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
tox = "*"
[build-system]
requires = ["poetry>=1.1.12"]
build-backend = "poetry.masonry.api"