-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 1019 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 1019 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
#!/usr/bin/env python
from setuptools import setup
setup(name='django-forceadminlanguage',
version='0.0.1',
description='Force Django Admin to show in one selected language.',
long_description='Use one language for Django Admin in multilingual sites.',
author='Vital Belikov',
author_email='vital@qwe.lv',
packages=['forceadminlanguage'],
url='https://github.com/Brick85/django_forceadminlanguage/',
include_package_data=True,
zip_safe=False,
requires=['django(>=1.3)'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'],
license='New BSD')