forked from tj-django/django-extra-field-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
110 lines (99 loc) · 2.93 KB
/
setup.py
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import io
import os
from setuptools import find_packages, setup
install_requires = ["future", "six"]
test_requires = [
"tox",
"pytest-django",
"pluggy>=0.7",
"mock",
"codacy-coverage",
]
deploy_requires = [
"readme_renderer[md]",
"bump2version==1.0.1",
]
lint_requires = [
"flake8",
"yamllint",
"isort",
]
local_dev_requires = [
"Django>=1.11.18",
"pip-tools",
"check-manifest",
]
extras_require = {
"development": [
local_dev_requires,
install_requires,
test_requires,
lint_requires,
],
"test": test_requires,
"lint": lint_requires,
"deploy": deploy_requires,
"tox": local_dev_requires,
}
BASE_DIR = os.path.dirname(__file__)
README_PATH = os.path.join(BASE_DIR, "README.md")
if os.path.isfile(README_PATH):
with io.open(README_PATH, encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
else:
LONG_DESCRIPTION = ""
setup(
name="django-extra-field-validation",
version="1.1.1",
description="Extra django field validation.",
python_requires=">=2.6",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Tonye Jack",
author_email="[email protected]",
maintainer="Tonye Jack",
maintainer_email="[email protected]",
url="https://github.com/tj-django/django-extra-field-validation.git",
license="MIT/Apache-2.0",
keywords=[
"django",
"model validation",
"django models",
"django object validation",
"field validation",
"conditional validation",
"cross field validation",
"django validation",
"django validators",
"django custom validation",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Topic :: Internet :: WWW/HTTP",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
],
install_requires=install_requires,
tests_require=["coverage", "pytest"],
extras_require=extras_require,
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests*", "demo", "manage.*"]
),
)