-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
38 lines (36 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'django-validated-file',
version = ":versiontools:validatedfile:",
description = "This Django app adds a new field type, ValidatedFileField, that add the capability of checking the document size and types the user may send.",
long_description = "",
keywords = 'django, filefield, validation',
author = u'Andrés Moya Velázquez',
author_email = '[email protected]',
url = 'https://github.com/kaleidos/django-validated-file',
license = 'BSD',
include_package_data = True,
package_data = {
'': ['*.po', '*.mo'],
},
packages = find_packages(),
install_requires=[
'distribute',
'python-magic >= 0.4.2',
],
setup_requires = [
'versiontools >= 1.8',
'python-magic >= 0.4.2',
],
classifiers = [
"Programming Language :: Python",
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
]
)