-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.14 KB
/
setup.py
File metadata and controls
33 lines (29 loc) · 1.14 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
version = '0.0.11'
setup(name='django-directupload',
version=version,
description='A Django application that offers direct uploading of files from your forms using jQuery-file-upload.',
author='Jason Kraus',
author_email='jasonk@cukerinteractive.com',
url='https://github.com/cuker/django-directupload',
packages=find_packages(exclude=['test_environment', 'setuptests']),
test_suite='setuptests.setuptest.SetupTestSuite',
tests_require=(
'pep8==1.3.1',
'coverage',
'django',
),
include_package_data = True,
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',
'Topic :: Utilities'],
)