-
Notifications
You must be signed in to change notification settings - Fork 257
/
setup.cfg
41 lines (41 loc) · 1.46 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
[metadata]
name = django-modeltranslation
version = file:VERSION
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
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
Changelog = https://github.com/deschler/django-modeltranslation/blob/master/CHANGELOG.md
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
Environment :: Web Environment
Intended Audience :: Developers
Framework :: Django
License :: OSI Approved :: BSD License
license = New BSD
[options]
install_requires =
Django>=4.2
typing-extensions>=4.0.1; python_version<"3.11"
packages =
modeltranslation
modeltranslation.management
modeltranslation.management.commands
[options.package_data]
modeltranslation =
static/modeltranslation/css/*.css
static/modeltranslation/js/*.js
py.typed