Adding reviews.md template / Started fleshing out setup.py to handle errbot plugins
[margebot.git] / setup.py
index e7f4764..7a5bb92 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -13,12 +13,20 @@ with open('test-requirements.txt') as f:
 setup(
     name='Margebot',
     version='1.0.0',
-    packages=['plugins', ],
+    # packages=['plugins'],
+    data_files=[('/opt/errbot/plugins/Marge',
+                 ['./plugins/marge.plug',
+                  './plugins/marge.py',
+                  './plugins//templates/reviews.md',
+                  'README.md',
+                  'LICENCE'])],
     license='GPLv3',
+    description='A Errbot plugin for reminding you about outstanding Gitlab merge requests',
     long_description=open('README.md').read(),
     url='https://pwan.org/git/?p=margebot.git;a=summary',
     author='JudeN',
     author_email='margebot_spam@pwan.org',
+    include_package_data=True,
 
     install_requires=install_required,