forked from greut/wsgi-accept-language
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 653 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='wsgi-accept-language',
version='0.1',
description='WSGI to deal with accept-language letting you only playing with environ["lang"]',
author='Yoan Blanc',
author_email='yoan@dosimple.ch',
license='BSD',
url='http://github.com/greut/wsgi-accept-language',
packages=find_packages(exclude=['tests']),
install_requires=[],
entry_points="""# -*- Entry points: -*-
[paste.filter_factory]
main = wsgi_accept_language.wsgiapp:make_filter
""",
test_suite='tests',
tests_require=['WebTest'])