-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
32 lines (31 loc) · 1.04 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
from setuptools import setup
setup(
name='django-storage-swift',
version='1.3.0',
description='OpenStack Swift storage backend for Django',
long_description=open('README.rst').read(),
url='https://github.com/dennisv/django-storage-swift',
author='Dennis Vermeulen',
author_email='[email protected]',
license='MIT',
packages=['swift'],
install_requires=[
'python-swiftclient>=2.2.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 :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)