forked from Alem/django-jfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 988 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
from setuptools import setup, find_packages
from os.path import dirname
import jfu
setup(
name = 'django-%s' % jfu.__prog__,
version = jfu.__version__,
author = jfu.__author__,
author_email = "[email protected]",
description = jfu.__desc__,
license = jfu.__licence__,
keywords = "django, jquery file upload, multi-upload",
url = "http://packages.python.org/jfu",
packages = find_packages(),
include_package_data = True,
long_description = open('README.rst').read(),
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
"License :: OSI Approved :: %s" % jfu.__licence__,
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)