-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (54 loc) · 2.09 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
60
61
# -*- coding: utf-8 -*-
"""
`setup.py` for `multiuploader`.
For project information check out:
https://github.com/vinaypost/multiuploader
For `setup.py` information check out:
https://docs.python.org/2/distutils/setupscript.html
"""
from distutils.core import setup
from multiuploader import __version__
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
for cmd in ('egg_info', 'develop'):
import sys
if cmd in sys.argv:
from setuptools import setup
setup(
name = 'multiuploader',
version = __version__,
author = 'Vinay Kumar',
author_email = 'vk-sharma@outlook.com',
packages = find_packages(),
license = 'LICENSE.txt',
description = 'Multiuploader - is an application which enable ability to upload multiple files in Django',
long_description = open('README.md').read(),
include_package_data = True,
url = 'https://github.com/vinaypost/multiuploader',
download_url = 'https://github.com/vinaypost/multiuploader/archive/'+__version__+'.tar.gz',
keywords = ['multiupload', 'multiuploader', 'fileupload', 'mediaupload', 'imageupload'],
platforms=['OS Independent'],
classifiers = CLASSIFIERS,
install_requires=['django>=1.10', 'sorl-thumbnail>=12.3', 'python-magic>=0.4.12'],
zip_safe=False,
)