forked from leplatrem/django-sizefield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.22 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
#!/usr/bin/python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
f = open('README')
readme = f.read()
f.close()
setup(name = 'django-sizefield',
version = '0.1',
license = 'LGPL',
description = 'A model field to store a file size, whose edition and display shows units.',
author = "Mathieu Leplatre",
author_email = "[email protected]",
url = "http://code.mathieu-leplatre.info/projects/show/django-sizefield",
download_url = "http://code.mathieu-leplatre.info/repositories/show/django-sizefield",
long_description = readme,
provides = ['sizefield'],
packages = find_packages(),
platforms = ('any',),
keywords = ['django', 'field', 'filesize'],
classifiers = ['Programming Language :: Python :: 2.5',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'Natural Language :: English',
'Topic :: Utilities',
'Development Status :: 5 - Production/Stable'],
)