-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 968 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
from setuptools import setup, find_packages
import os
from codecs import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
github_url = 'https://github.com/couchbase/couchbase-sqlalchemy'
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='couchbase-sqlalchemy',
version='1.0.1',
author='Ayush Tripathi',
author_email='[email protected]',
license = "Apache-2.0",
long_description=long_description,
description='A SQLAlchemy dialect for Couchbase Analytics/Columnar.',
keywords='Couchbase db database cloud analytics Columnar',
packages=find_packages(),
install_requires=[
'sqlalchemy>=1.3.0,<2.0',
'couchbase>=4.0.0'
],
entry_points={
'sqlalchemy.dialects': [
'couchbase = couchbase_sqlalchemy.dialect.couchbase_dialect:CouchbaseDialect',
],
},
)