forked from gonz/django-model-i18n
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 887 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
from setuptools import setup, find_packages
setup(
name='django-model-i18n',
version='0.1',
description='Model translation for Django using a registration-based approach and seperate translation tables.',
author='Florian Ledermann',
author_email='[email protected]',
url='https://github.com/floledermann/django-model-i18n',
license='BSD License',
packages=find_packages(exclude=['test_project']),
# include all data defined in MANIFEST.in
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
],
zip_safe=False,
)