-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (21 loc) · 1.07 KB
/
setup.py
File metadata and controls
executable file
·25 lines (21 loc) · 1.07 KB
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
#!/usr/bin/env python
# python setup.py sdist
# python setup.py bdist_wheel --universal
# twine upload dist/*
from __future__ import absolute_import
from setuptools import setup, find_packages
setup(name='ConnectorDB',
version='0.3.5', # The a.b of a.b.c follows connectordb version. c is the version of python. Remember to change __version__ in __init__
description='ConnectorDB Python Interface',
author='ConnectorDB contributors',
license="Apache-2.0",
author_email='support@connectordb.com',
url='https://github.com/connectordb/connectordb-python',
packages=find_packages(exclude=['contrib', 'docs', '*_test']),
classifiers=[#'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'],
install_requires=["requests", "websocket-client", "jsonschema"])