-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
59 lines (50 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
import codecs
import os
from os import path
from setuptools import setup
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
description = ('Django package that provides Cloudinary storages for both media and static files '
'as well as management commands for removing unnecessary files.')
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-cloudinary-storage',
version='0.3.0',
author='Konrad Lisiczynski',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/klis87/django-cloudinary-storage',
keywords='django cloudinary storage',
packages=[
'cloudinary_storage',
'cloudinary_storage.templatetags',
'cloudinary_storage.management',
'cloudinary_storage.management.commands'],
include_package_data=True,
install_requires=[
'requests>=2.10.0',
'cloudinary>=1.4.0'
],
extras_require={
'video': ['python-magic>=0.4.12']
},
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
]
)