-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
108 lines (98 loc) · 2.4 KB
/
setup.cfg
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
;;
;; crispy-forms-propeller package
;;
[metadata]
name = crispy-forms-propeller
version = 0.0.2a11
description = Django application to add 'django-crispy-forms' layout objects for 'Propeller.in'
long_description = file:README.rst
long_description_content_type = text/x-rst
author = Adam Radestock
author_email = [email protected]
url = https://github.com/raddishiow/crispy-forms-propeller
license = MIT
keywords = Django, django-crispy-forms
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Framework :: Django
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
Framework :: Django :: 3.0
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development :: Libraries :: Python Modules
[options]
include_package_data = True
install_requires =
Django>=3.0
django-crispy-forms>=1.8.1
packages = find:
zip_safe = True
[options.extras_require]
dev =
flake8
pytest
pytest-django
sphinx
sphinx-rtd-theme
sphinx-autobuild
django-debug-toolbar>=1.9,<1.10
[options.packages.find]
where = .
exclude=
data
docs
tests
sandbox
[wheel]
universal = 1
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 80
exclude =
.git,
.venv,
build,
venv,
__pycache__,
*/migrations/*
[tool:pytest]
DJANGO_SETTINGS_MODULE = sandbox.settings.tests
addopts = -vv
python_files =
*.py
testpaths =
tests
[tox:tox]
envlist = py{27}-django{18,19},py35-django{18,19,110,111,200,210}
minversion = 3.4.0
[testenv]
# Get the right django version following the current env
deps =
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
django200: Django>=2.0,<2.1
django210: Django>=2.1,<2.2
# setenv =
# PYTHONPATH = {toxinidir}:{env:PYTHONPATH:}
commands =
pip install -e .[dev]
pytest -vv tests