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
|
[metadata]
name = django-countries
version = 7.3.2
description = Provides a country field for Django models.
long_description = file: README.rst, CHANGES.rst
author = Chris Beaven
author_email = smileychris@gmail.com
url = https://github.com/SmileyChris/django-countries/
keywords = django, countries, flags
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
[options]
zip_safe = False
include_package_data = False
packages = find:
install_requires =
typing_extensions
[options.extras_require]
maintainer =
transifex-client
zest.releaser[recommended]
django
dev =
tox
black
django
pytest
pytest-django
djangorestframework
graphene-django
test =
pytest
pytest-django
pytest-cov
djangorestframework
graphene-django
pyuca =
pyuca
[bdist_wheel]
universal = 0
[flake8]
exclude =
.tox,
.git,
__pycache__,
build,
dist
max-line-length = 88
ignore = E203,W503
[coverage:run]
source = django_countries
omit =
django_countries/release.py
django_countries/makesprite.py
parallel = True
[zest.releaser]
less-zeros = yes
version-levels = 2
tag-format = v{version}
tag-message = Version {version}
tag-signing = yes
date-format = %%-d %%B %%Y
prereleaser.middle =
django_countries.release.translations
[check-manifest]
ignore-bad-ideas = *.mo
[tool:pytest]
DJANGO_SETTINGS_MODULE = django_countries.tests.settings
filterwarnings =
ignore::DeprecationWarning:graphene
[mypy]
plugins = mypy_django_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = django_countries.tests.settings
[egg_info]
tag_build =
tag_date = 0
|