forked from ericholscher/minidetector
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
23 lines (22 loc) · 747 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
from distutils.core import setup
setup(
name='minidetector',
version='1.2',
description='Django middleware and view decorator to detect phones and small-screen devices',
long_description = open("readme.markdown").read(),
author='metamoof, Chris Drackett, Steve Schwarz',
url = "http://code.google.com/p/minidetector/",
packages = [
"minidetector",
"minidetector.tests",
],
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)