blob: c20e178b1fb21e22897045cc25ab25d4e554a309 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- setup.py.orig 2016-04-14 21:10:12 UTC
+++ setup.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='django-annotations',
+ version='0.0.0.2016041401',
+ packages=['annotation/migrations', 'annotation', 'annotator/settings', 'annotator', 'enqueue/migrations', 'enqueue'],
+ scripts=['annotations.py'],
+ package_data={'annotation': ['static/js/annotator.min.js', 'templates/*']},
+)
|