X-Git-Url: https://git.jsancho.org/?p=datasette-pytables.git;a=blobdiff_plain;f=setup.py;h=ff468632b49cf61cd7473c3069f1bf8d1edc570c;hp=1fea91e557f68500a05976e26058cb8613599918;hb=ab111327f9822300ab1d8605ff86cfcebb78aeee;hpb=0cd020af033fcb2a15fe3326f3a49830b816379c diff --git a/setup.py b/setup.py index 1fea91e..ff46863 100644 --- a/setup.py +++ b/setup.py @@ -19,19 +19,20 @@ setup( long_description=get_long_description(), long_description_content_type='text/markdown', author='Javier Sancho', + author_email='jsf@jsancho.org', url='https://github.com/jsancho-gpl/datasette-pytables', license='Apache License, Version 2.0', packages=['datasette_pytables'], entry_points={ 'datasette.connectors': [ - 'pytables = datasette_pytables' + 'pytables = datasette_pytables:PyTablesConnector' ], }, install_requires=[ 'datasette-connectors>=2.0.0', 'tables', - 'moz-sql-parser==1.3.18033', - 'mo-future==1.6.18072' + 'moz-sql-parser==3.32.20026', + 'mo-future==3.89.20246' ], tests_require=['pytest', 'aiohttp'] )