X-Git-Url: https://git.jsancho.org/?p=datasette-pytables.git;a=blobdiff_plain;f=setup.py;h=d6ef38ffb322ece293f2f48ff10bccb30fab398e;hp=8b013294588d86200391fc5cab5ce05ce90993dd;hb=2733f95ebc2da6c6cbd84be8b54efa9b3906af04;hpb=0494e841fa6f94854831009da4b9a741cb2a2e11 diff --git a/setup.py b/setup.py index 8b01329..d6ef38f 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>=2.0.0', + 'tables', + 'moz-sql-parser==3.32.20026', + 'mo-future==3.89.20246' + ], + tests_require=['pytest', 'aiohttp'] ) -