-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 975 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = 'django-file-import',
version = '0.0',
author = 'John Milner',
author_email = '[email protected]',
description = ('Import many files to FileFields at once by uploading a single ZIP archive'),
license = 'BSD',
keywords = 'django import zip archive filefield fieldfile batch',
url = 'https://github.com/jnm/django-file-import',
packages=find_packages(),
include_package_data=True,
test_suite='setuptest.setuptest.SetupTestSuite',
tests_require=(
'django-setuptest',
'south',
),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
],
install_requires=['django']
)