-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.16 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.16 KB
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
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
__version__ = '0.1.4'
setup(
name='django-fileprovider',
version=__version__,
description='django middleware for serving media files ( or protect them )',
author='Renjith Thankachan',
author_email='mail3renjith@gmail.com',
url='https://github.com/instapk/django-fileprovider.git',
download_url='https://github.com/instapk/django-fileprovider/archive/0.1.4.tar.gz',
long_description=open('README.md', 'r').read(),
packages=[
'fileprovider',
],
zip_safe=False,
requires=[
],
install_requires=[
'six>=1.10.0',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Utilities'
],
)