Skip to content

Commit 4e55d73

Browse files
committed
added setup.py added by h3 to his repository. as he commited:
Added a god damn setup.py :D
1 parent a225b89 commit 4e55d73

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

setup.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"""
2+
django-jquery-file-upload
3+
"""
4+
5+
from setuptools import setup, find_packages
6+
7+
setup (
8+
name = "django-jquery-file-upload",
9+
version = "0.0.1",
10+
url = "",
11+
license = "The MIT License (MIT)",
12+
description = "A minimal django project containing a minimal app with a working jquery file upload form based on the work by Sebastian Tschan: http://aquantum-demo.appspot.com/file-upload",
13+
author = 'Sebastian Tschan / Sigurd Gartmann',
14+
packages = find_packages(),
15+
package_dir = {'': '.'},
16+
install_requires = [],
17+
)

0 commit comments

Comments
 (0)