-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
40 lines (37 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = "0.1.1" # also in __init__.py
import os
long_description = open(os.path.join(os.path.dirname(__file__), "README.textile")).read()
setup(
name="django-badbrowser",
version=VERSION,
url="http://github.com/adamcharnock/django-badbrowser",
download_url="[email protected]:adamcharnock/django-badbrowser.git",
description="Browser detection (including browser upgrade notices) for Django",
long_description=long_description,
author="Adam Charnock",
author_email="[email protected]",
platforms=["any"],
license="MIT",
packages=[
"badbrowser",
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Browsers",
],
install_requires=[
"httpagentparser",
],
zip_safe=False,
include_package_data=True,
)