forked from larsc/django-datatrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import (setup, find_packages)
import datatrans
LONG_DESCRIPTION = """
"""
setup(name='django-datatrans',
version=datatrans.__version__,
description='Translate Django models without changing anything to existing applications and their '
'underlying database.',
long_description=LONG_DESCRIPTION,
author='Jef Geskens, VikingCo nv',
author_email='[email protected]',
url='http://github.com/citylive/django-datatrans/',
license='LICENSE',
packages=find_packages(),
include_package_data=True,
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',
],
)