-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 851 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 851 Bytes
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 setuptools import setup, find_packages
setup(
name='django-modeltranslation-wrapper',
description='Wrapper around modeltranslation package, adding nice features.',
long_description=open('README.rst').read(),
version='1.2.1',
author='Jacek Tomaszewski',
author_email='jacek.tomek@gmail.com',
url='https://github.com/zlorf/django-modeltranslation-wrapper',
license='BSD',
install_requires=(
'django-modeltranslation',
),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=find_packages(),
include_package_data = True,
)