1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-19 11:40:31 -04:00
ports/www/py-django-annotations/files/patch-setup.py
Steve Wills 23fef823c7 www/py-django-annotations: create port
Django implementation of annotatorjs Storage.

WWW: https://github.com/TheDataShed/django-annotations
2016-04-20 18:46:49 +00:00

13 lines
448 B
Python

--- 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/*']},
+)