X-Git-Url: https://git.jsancho.org/?p=datasette-pytables.git;a=blobdiff_plain;f=setup.py;h=0e9f1f92d6e76f4874d1aa9465d77f77f0294b7f;hp=8b013294588d86200391fc5cab5ce05ce90993dd;hb=f1a049b7a43d2c4e77d4493f50e1a9c345d84a16;hpb=0494e841fa6f94854831009da4b9a741cb2a2e11 diff --git a/setup.py b/setup.py index 8b01329..0e9f1f9 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import os def get_version(): with open('VERSION') as fd: - return fd.read() + return fd.read().strip() def get_long_description(): with open(os.path.join( @@ -27,7 +27,11 @@ setup( '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'] ) -