forked from ninemoreminutes/django-admin-object-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
118 lines (103 loc) · 2.98 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
109
110
111
112
113
114
115
116
117
118
[bumpversion]
commit = True
current_version = 0.1.11
tag = True
tag_name = {new_version}
[metadata]
name = Django-Admin-Object-Actions
version = attr: admin_object_actions.__version__
author = Nine More Minutes, Inc.
author_email = projects@ninemoreminutes.com
description = Library to support object-level actions in the Django admin interface.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django, admin, object, actions
license = BSD
url = https://github.com/ninemoreminutes/django-admin-object-actions/
project_urls =
Documentation = https://django-admin-object-actions.rtfd.org/
Source = https://github.com/ninemoreminutes/django-admin-object-actions/
Tracker = https://github.com/ninemoreminutes/django-admin-object-actions/issues
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 1.11
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 :: 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
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
packages = admin_object_actions
include_package_data = True
setup_requires =
setuptools-twine
pytest-runner
tests_require =
django>=1.11
pytest
pytest-cov
pytest-django
pytest-flake8
install_requires =
django>=1.11
django-crum
six
[check]
metadata = True
restructuredtext = True
strict = True
[clean]
all = True
[egg_info]
tag_build = .dev
[build_sphinx]
source_dir = docs
build_dir = docs/_build
all_files = True
version = attr: admin_object_actions.__version__
release = attr: admin_object_actions.__version__
[upload_sphinx]
upload_dir = docs/_build/html
[upload_docs]
upload_dir = docs/_build/html
[bdist_wheel]
universal = 1
[aliases]
check = twine_check
upload = twine_upload
dev_build = clean test egg_info sdist bdist_wheel build_sphinx twine_check
release_build = clean test egg_info -b "" sdist bdist_wheel build_sphinx twine_check
test = pytest
ship_it = release_build twine_upload
[bumpversion:file:admin_object_actions/__init__.py]
[bumpversion:file:docs/conf.py]
[pycodestyle]
ignore = E501
exclude = build,dist,docs,.tox
[flake8]
ignore = E501
exclude = build,dist,docs,.tox
[tool:pytest]
DJANGO_SETTINGS_MODULE = test_project.settings
python_files = test*.py
testpaths = admin_object_actions test_project
norecursedirs = .git build dist docs
flake8-ignore = E501
addopts = --reuse-db --nomigrations --cache-clear --flake8 --cov admin_object_actions --cov-append --cov-report term-missing