Skip to content

Commit 0bad158

Browse files
author
dan
committed
adding valid setup.py - the django project with the setup.py file serves as an example / test. the package 'fileupload' is installed by the setup.py file as well as all of the necessary dependencies and the static media. Run python manage.py collectstatic to get the static media into your project.
1 parent d3151d4 commit 0bad158

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
include_package_data = True,
16+
package_dir = {'': '.'},
17+
install_requires = ['django', 'pillow'],
18+
)

0 commit comments

Comments
 (0)