forked from wmarquardt/django-language-detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (25 loc) · 882 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
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
from setuptools import setup
version = '1.0.1'
setup(
name='django-language-detect',
version=version,
keywords='django-language-detect',
description='Django browser language detect',
long_description=open('README.rst').read(),
url='https://github.com/wmarquardt/django-language-detect',
author='William Marquardt',
author_email='[email protected]',
packages=['language_detect'],
py_modules=[],
install_requires=['django-six'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial :: Spreadsheet',
],
)