-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
93 lines (83 loc) · 2.68 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "django-model-subscription"
version = "0.2.2"
description = "Subscription model for a django model instance."
authors = ["Tonye Jack <tonyejck@gmail.com>"]
license = "MIT"
homepage = "https://django-model-subscription.readthedocs.io/en/latest/index.html"
repository = "https://github.com/jackton1/django-model-subscription"
documentation = "https://django-model-subscription.readthedocs.io/en/latest/index.html"
keywords = [
"django model subscription",
"model observer",
"model change subscriber",
"model subscriptions",
"model instance subscription",
]
classifiers = [
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
packages = [
{ include = "model_subscription" }
]
include = [
"CHANGELOG.md",
]
exclude = [
"__pycache__",
"*.pyc",
"*.pyo",
"*.orig",
"tests",
"model_subscription/tests.py",
"demo",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.7.* || 3.8.* || 3.9.* || 3.10.* || 3.11.*"
# The dataclasses package is not in the stdlib in Python 3.6
dataclasses = { version = "^0.8", python = "~3.6" }
django-lifecycle = "~1.0.0"
typing_extensions = ">=3.7,<5.0"
six = "^1.14"
[tool.poetry.dev-dependencies]
Django = {version = "^4.0.0"}
check-manifest = {version = "^0.48", python = "^3.6"}
bump2version = {version = "^1.0.0", python = "^3.6"}
git-changelog = {version = "^1.0.0", python = "^3.6.2"}
poetry = "=1.1.14"
sphinx = "=4.5.0"
sphinx-autobuild = "^2021.0.0"
sphinx_rtd_theme = "^1.0.0"
lockfile = "^0.12.2"
recommonmark = "^0.7.1"
psycopg2 = {version = "=2.9.6", python = "3.6.* || 3.7.* || 3.8.* || 3.9.*"}
mysqlclient = {version = "=2.1.1", python = "^3.6"}
tox = "^3.25"
mypy = {version = "^0.961", python = "^3.6"}
django-stubs = {version = "^4.0.0", python = "^3.6"}
[tool.poetry.extras]
deploy = ["bump2version", "git-changelog"]
development = ["Django", "check-manifest"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"