aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in3
-rw-r--r--setup.py7
2 files changed, 7 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..04303c0
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,3 @@
+recursive-include * *.html
+recursive-include * *.json
+
diff --git a/setup.py b/setup.py
index e0ba003..0300ef7 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,8 @@
-from distutils.core import setup
+from setuptools import setup, find_packages
+
setup(
- name = "wkhtmltopdf",
- packages = ["wkhtmltopdf", ],
+ name = "django-wkhtmltopdf",
+ packages = find_packages(),
include_package_data=True,
#install_requires=[],
version = "0.1",