-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·61 lines (53 loc) · 2.07 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
description="""With easymode you can create backends for dynamic flash/flex
websites.Easymode makes internationalization simple and outputs xml by
default. To tailor the xml to your application, you can transform
it using xslt templates, which easymode integrates.
For more info, look at http://packages.python.org/django-easymode/details.html
documentation at http://packages.python.org/django-easymode/
release notes at http://packages.python.org/django-easymode/changes.html"""
version = '1.4b5'
packages = []
data_files = []
setup(name='django-easymode',
version=version,
description='Quickly build backends for flash/flex websites with django',
author='L. van de Kerkhof',
author_email='[email protected]',
maintainer='L. van de Kerkhof',
maintainer_email='[email protected]',
keywords='adobe flex flash xml xslt i18n internationalization translate django',
long_description=description,
install_requires=[
'setuptools',
'django>=1.4',
'polib',
],
url='http://github.com/specialunderwear/django-easymode',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
# for avoiding conflict have one namespace for all apc related eggs.
namespace_packages=[],
# include non python files
include_package_data=True,
zip_safe=False,
platforms = "any",
license='GPL',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Localization',
],
)