-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 979 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
import os
def get_version():
with open('VERSION') as fd:
return fd.read().strip()
def get_long_description():
with open(os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'README.md'
), encoding='utf8') as fp:
return fp.read()
setup(
name='datasette-connectors',
version=get_version(),
description='Datasette support to other database types',
long_description=get_long_description(),
long_description_content_type='text/markdown',
author='Javier Sancho',
author_email='[email protected]',
url='https://github.com/pytables/datasette-connectors',
license='Apache License, Version 2.0',
packages=['datasette_connectors'],
install_requires=[
'datasette==0.51.1',
],
tests_require=[
'pytest',
'aiohttp',
'asgiref',
],
entry_points='''
[console_scripts]
datasette=datasette_connectors.cli:cli
'''
)