-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (75 loc) · 2.25 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
[tool.poetry]
name = "django-serializable-model"
version = "0.0.6"
description = "Django classes to make your models, managers, and querysets serializable, with built-in support for related objects in ~150 LoC"
readme = "README.md"
packages = [
{ include = "django_serializable_model.py" },
# this is the original, unintended name, and should be removed in the
# first breaking/major release, v1.0.0. See `serializable.py` comment.
{ include = "serializable.py" }
]
include = [
"LICENSE",
"CHANGELOG.md"
]
authors = ["Anton Gilgur"]
license = "Apache-2.0"
homepage = "https://github.com/agilgur5/django-serializable-model"
repository = "https://github.com/agilgur5/django-serializable-model"
documentation = "https://github.com/agilgur5/django-serializable-model"
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Framework :: Django",
"Framework :: Django :: 1.4",
"Framework :: Django :: 1.5",
"Framework :: Django :: 1.6",
"Framework :: Django :: 1.7",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2"
]
keywords=[
"django",
"serializer",
"serializers",
"serializer-django",
"serialize",
"json",
"dict",
"queryset",
"model",
"modelmanager",
"full",
"wadofstuff"
]
[tool.poetry.urls]
"Tracker" = "https://github.com/agilgur5/django-serializable-model/issues"
[tool.poetry.dependencies]
python = "^2.7 || ^3.5"
[tool.poetry.dev-dependencies]
django = [
{version = "^2.2", python = "^3.5"},
{version = "^1.11", python = "^2.7"}
]
pytest = [
{version = "^5.1", python = "^3.5"},
{version = "<5", python = "^2.7"}
]
pytest-django = "^3.5"
pytest-cov = "^2.7"
[build-system]
requires = ["poetry>=1.0.0b3"]
build-backend = "poetry.masonry.api"