]> git.jsancho.org Git - datasette-connectors.git/blob - setup.py
Post 2.0.0 release actions done
[datasette-connectors.git] / setup.py
1 from setuptools import setup
2 import os
3
4 def get_version():
5     with open('VERSION') as fd:
6         return fd.read().strip()
7
8 def get_long_description():
9     with open(os.path.join(
10         os.path.dirname(os.path.abspath(__file__)), 'README.md'
11     ), encoding='utf8') as fp:
12         return fp.read()
13
14
15 setup(
16     name='datasette-connectors',
17     version=get_version(),
18     description='Datasette support to other database types',
19     long_description=get_long_description(),
20     long_description_content_type='text/markdown',
21     author='Javier Sancho',
22     author_email='jsf@jsancho.org',
23     url='https://github.com/pytables/datasette-connectors',
24     license='Apache License, Version 2.0',
25     packages=['datasette_connectors'],
26     install_requires=[
27         'datasette==0.51.1',
28     ],
29     tests_require=[
30         'pytest',
31         'aiohttp',
32         'asgiref',
33     ],
34     entry_points='''
35         [console_scripts]
36         datasette=datasette_connectors.cli:cli
37     '''
38 )