forked from dennisv/django-storage-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.23 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
from setuptools import setup
setup(
name='django-storage-swift',
version='1.2.16',
description='OpenStack Swift storage backend for Django',
long_description=open('README.rst').read(),
url='http://github.com/blacktorn/django-storage-swift',
author='Dennis Vermeulen',
author_email='blacktorn@gmail.com',
license='MIT',
packages=['swift'],
install_requires=[
'python-swiftclient>=1.4.0',
'python-keystoneclient>=0.2.3',
'six',
'python-magic>=0.4.10',
],
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)