forked from larsc/django-datatrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 985 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import datatrans
setup(name='django-datatrans',
version=datatrans.__version__,
description='Translate Django models without changing anything to existing applications and their underlying database.',
author='City Live nv',
author_email='[email protected]',
url='http://github.com/citylive/django-datatrans/',
packages=['datatrans'],
license='BSD',
include_package_data = True,
package_data = {'datatrans': ['templates/datatrans/*'],},
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
'Topic :: Software Development :: Internationalization',
],
)