forked from infoportugal/wagtail-modeltranslation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (41 loc) · 1.95 KB
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='wagtail-modeltranslation',
version='0.4.3',
description='Translates Wagtail CMS models using a registration approach.',
long_description=(
'The modeltranslation application can be used to translate dynamic '
'content of existing models to an arbitrary number of languages '
'without having to change the original model classes. It uses a '
'registration approach (comparable to Django\'s admin app) to be able '
'to add translations to existing or new projects and is fully '
'integrated into the Wagtail admin backend.'),
author='InfoPortugal, S.A.',
author_email='[email protected]',
maintainer='Rui Martins',
maintainer_email='[email protected]',
url='https://github.com/infoportugal/wagtail-modeltranslation',
packages=[
'wagtail_modeltranslation',
'wagtail_modeltranslation.management',
'wagtail_modeltranslation.management.commands',
'wagtail_modeltranslation.templatetags'],
package_data={'wagtail_modeltranslation': ['static/modeltranslation/css/*.css',
'static/modeltranslation/js/*.js']},
requires=['django(>=1.7)', 'wagtail(>=1.0)'],
download_url='https://github.com/infoportugal/wagtail-modeltranslation/archive/v0.2.3.tar.gz',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License'],
license='New BSD')