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
|
[bumpversion]
commit = True
current_version = 0.7.9
tag = True
tag_name = {new_version}
[metadata]
name = django-crum
version = attr: crum.__version__
author = Nine More Minutes, Inc.
author_email = support@ninemoreminutes.com
description = Django middleware to capture current request and user.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django, request, user, middleware, thread, local
license = BSD
url = https://github.com/ninemoreminutes/django-crum/
project_urls =
Documentation = https://django-crum.rtfd.org/
Source = https://github.com/ninemoreminutes/django-crum/
Tracker = https://github.com/ninemoreminutes/django-crum/issues
classifiers =
Development Status :: 4 - Beta
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
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
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 = crum
include_package_data = True
setup_requires =
pytest-runner
setuptools-twine
tests_require =
django>=1.8
djangorestframework
pytest
pytest-cov
pytest-django
pytest-flake8
install_requires =
django>=1.8
[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: crum.__version__
release = attr: crum.__version__
[upload_sphinx]
upload_dir = docs/_build/html
[upload_docs]
upload_dir = docs/_build/html
[bdist_wheel]
universal = 1
[aliases]
dev_build = clean test egg_info sdist bdist_wheel twine_check build_sphinx
release_build = clean test egg_info -b "" sdist bdist_wheel twine_check build_sphinx
test = pytest
ship_it = release_build twine_upload
[bumpversion:file:crum/__init__.py]
[bumpversion:file:docs/conf.py]
[pycodestyle]
ignore = E501
exclude = .git,.tox,build,dist,docs
[flake8]
ignore = E501
exclude = .git,.tox,build,dist,docs
[tool:pytest]
DJANGO_SETTINGS_MODULE = test_project.settings
python_files = test*.py
testpaths = crum test_project
norecursedirs = .git .tox build dist docs
flake8-ignore = E501
addopts = --reuse-db --nomigrations --cache-clear
|