-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (29 loc) · 1.01 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
#!/usr/bin/env python2
from setuptools import setup
from distutils.command.install_data import install_data
from distutils.command.install import INSTALL_SCHEMES
import os
import sys
project_dir = 'djangohttpdigest'
setup(
name = "djangohttpdigest",
version = '0.2.3',
url = 'http://devel.almad.net/trac/django-http-digest/',
author = 'Lukas Linhart',
author_email = '[email protected]',
description = 'Support for HTTP digest in Django web framework',
packages = ['djangohttpdigest'],
scripts = [],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)