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
|
[metadata]
name = django-countries
version = 5.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 :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Framework :: Django
[options]
zip_safe = False
include_package_data = False
packages = find:
[options.extras_require]
maintainer =
transifex-client
zest.releaser[recommended]
django
dev =
tox
django
pytest
pytest-django
test =
pytest
pytest-django
pytest-cov
[bdist_wheel]
universal = 1
[flake8]
exclude =
.tox,
.git,
__pycache__,
build,
dist
[coverage:run]
source = django_countries
omit =
django_countries/release.py
django_countries/makesprite.py
[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 = module
[egg_info]
tag_build =
tag_date = 0
|