]> git.jsancho.org Git - datasette-pytables.git/blobdiff - setup.py
Use the datasette-connectors module for monkey patching datasette
[datasette-pytables.git] / setup.py
index 8b013294588d86200391fc5cab5ce05ce90993dd..0e9f1f92d6e76f4874d1aa9465d77f77f0294b7f 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 
 def get_version():
     with open('VERSION') as fd:
 
 def get_version():
     with open('VERSION') as fd:
-        return fd.read()
+        return fd.read().strip()
 
 def get_long_description():
     with open(os.path.join(
 
 def get_long_description():
     with open(os.path.join(
@@ -27,7 +27,11 @@ setup(
             'pytables = datasette_pytables'
         ],
     },
             'pytables = datasette_pytables'
         ],
     },
-    install_requires=['datasette-core', 'tables', 'moz-sql-parser', 'mo-future'],
-    tests_require=['pytest']
+    install_requires=[
+        'datasette-connectors',
+        'tables',
+        'moz-sql-parser==1.3.18033',
+        'mo-future==1.6.18072'
+    ],
+    tests_require=['pytest', 'aiohttp']
 )
 )
-