forked from sirmmo/django-webdav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (48 loc) · 1.82 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
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
#
# Copyright (c) 2011, SmartFile <[email protected]>
# All rights reserved.
#
# This file is part of django-webdav.
#
# Foobar is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Foobar is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with django-webdav. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup
setup(
name='django-webdav',
version='0.1',
description=('A WebDAV server for Django.'),
long_description=(
"""
WebDAV implemented as a Django application. The motivation for this project is to
allow authentication of users against Django's contrib.auth system, while also
exporting different directories per user. Many Django tools and app can be combined
with this such as django-digest etc. to provide a powerful WebDAV server.
"""
),
author='SmartFile',
author_email='[email protected]',
url='http://code.google.com/p/django-webdav/',
packages=['django_webdav'],
#'django_webdav.samples'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
)