X-Git-Url: https://git.jsancho.org/?p=datasette-pytables.git;a=blobdiff_plain;f=setup.py;h=032a946069d0e7daf1e2c7096ac9592e228b965f;hp=42b8ea474fcffbcb77c8f83a0fe3dda7a8581d71;hb=4e2383e4c4af6e1e9d03d4aa33a0e9bc6e01d399;hpb=308721266b775e56f3e43b0426c255c8b643d5a4 diff --git a/setup.py b/setup.py index 42b8ea4..032a946 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,7 @@ setup( 'pytables = datasette_pytables' ], }, - install_requires=['datasette', 'tables', 'moz-sql-parser', 'mo-future'], + install_requires=['datasette-core', 'tables', 'moz-sql-parser', 'mo-future'], tests_require=['pytest'] )