forked from jedie/django-reversion-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 2.11 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
[tool.poetry]
name = "django-reversion-compare"
version = "0.12.2"
description = "history compare for django-reversion"
# Will be generated from README.creole with: "poetry run update_rst_readme"
readme="README.rst"
license = "GPL-3.0-or-later"
authors = ["Jens Diemer <[email protected]>"]
homepage = "https://github.com/jedie/django-reversion-compare/"
keywords=["django", "django-reversion", "reversion", "diff", "compare"]
classifiers = [
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Utilities",
]
packages = [
{ include = "reversion_compare" },
]
[tool.poetry.dependencies]
python = "^3.6"
#
# https://www.djangoproject.com/download/#supported-versions
# v2.2 LTS - extended support until April 2022
django = ">=2.2, <3.1"
django-reversion = "*"
diff-match-patch = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-django = "*"
pytest-cov = "*"
coveralls = "*"
tox = "*"
django-tools = "*"
poetry-publish = "*"
pygments = "*"
textile = "*"
isort = "*"
flake8 = "*"
flynt = "*"
autopep8 = "*"
[tool.poetry.scripts]
update_rst_readme = "reversion_compare.publish:update_readme"
publish = "reversion_compare.publish:publish"
run_testserver = "reversion_compare_tests.manage:start_test_server"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"