2022-05-14 08:11:07 +00:00
|
|
|
[metadata]
|
|
|
|
|
name = django-modeltranslation
|
2022-05-15 06:16:49 +00:00
|
|
|
version = file:VERSION
|
2022-05-14 08:11:07 +00:00
|
|
|
description = Translates Django models using a registration approach.
|
|
|
|
|
long_description = file:README.rst
|
|
|
|
|
long_description_content_type = text/x-rst
|
|
|
|
|
author = Peter Eschler
|
|
|
|
|
author_email = peschler@gmail.com
|
|
|
|
|
maintainer = Sergiy Tereshchenko
|
|
|
|
|
maintainer_email = serg.partizan+modeltranslation@gmail.com
|
|
|
|
|
url = https://github.com/deschler/django-modeltranslation
|
2022-05-15 07:51:35 +00:00
|
|
|
project_urls =
|
|
|
|
|
Source = https://github.com/deschler/django-modeltranslation
|
|
|
|
|
Documentation = https://django-modeltranslation.readthedocs.org/en/latest
|
|
|
|
|
Mailing List = http://groups.google.com/group/django-modeltranslation
|
2024-08-12 09:04:27 +00:00
|
|
|
Changelog = https://github.com/deschler/django-modeltranslation/blob/master/CHANGELOG.md
|
2022-05-14 08:11:07 +00:00
|
|
|
classifiers =
|
|
|
|
|
Programming Language :: Python
|
|
|
|
|
Programming Language :: Python :: 3.9
|
2022-05-15 07:38:07 +00:00
|
|
|
Programming Language :: Python :: 3.10
|
2023-05-30 14:54:40 +00:00
|
|
|
Programming Language :: Python :: 3.11
|
2024-02-26 20:37:10 +00:00
|
|
|
Programming Language :: Python :: 3.12
|
2022-05-14 08:11:07 +00:00
|
|
|
Operating System :: OS Independent
|
|
|
|
|
Environment :: Web Environment
|
|
|
|
|
Intended Audience :: Developers
|
|
|
|
|
Framework :: Django
|
|
|
|
|
License :: OSI Approved :: BSD License
|
|
|
|
|
license = New BSD
|
|
|
|
|
[options]
|
|
|
|
|
install_requires =
|
2024-02-26 20:37:10 +00:00
|
|
|
Django>=4.2
|
2024-04-04 08:27:00 +00:00
|
|
|
typing-extensions>=4.0.1; python_version<"3.11"
|
2022-05-14 08:11:07 +00:00
|
|
|
packages =
|
|
|
|
|
modeltranslation
|
|
|
|
|
modeltranslation.management
|
|
|
|
|
modeltranslation.management.commands
|
|
|
|
|
[options.package_data]
|
|
|
|
|
modeltranslation =
|
|
|
|
|
static/modeltranslation/css/*.css
|
|
|
|
|
static/modeltranslation/js/*.js
|
2024-04-04 08:41:32 +00:00
|
|
|
py.typed
|