-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.31 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
48
[tool.poetry]
name = "django-visitor-pass"
version = "0.3.1"
description = "Django app for managing temporary session-based users."
license = "MIT"
authors = ["YunoJuno <[email protected]>"]
maintainers = ["YunoJuno <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/yunojuno/django-visitor-pass"
repository = "https://github.com/yunojuno/django-visitor-pass"
documentation = "https://github.com/yunojuno/django-visitor-pass"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.1",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [{ include = "visitors" }]
[tool.poetry.dependencies]
python = "^3.7"
django = "^3.0"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
coverage = "*"
pylint = "*"
flake8 = "*"
flake8-bandit = "*"
flake8-docstrings = "*"
isort = "*"
mypy = "*"
pre-commit = "*"
black = {version = "*", allow-prereleases = true}
freezegun = "*"
tox = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"