forked from torte/django-urli18n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 784 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='django-urli18n',
version='0.1',
description='A reusable Django app to display the current activated language in the URL',
author='Torsten Engelbrecht',
author_email='torsten.engelbrecht@gmail.com',
url='https://github.com/Torte/django-urli18n',
download_url='https://github.com/Torte/django-urli18n/tarball/master',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
"Programming Language :: Python",
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)