-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (24 loc) · 879 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
from setuptools import setup, find_packages
requirements = ["websocket-client!=0.49"]
def readme():
with open('README.md') as f:
return f.read()
setup(
name="liquidtap",
version="1.0.1",
description="QuoineFinancial/LiquidTap websocket client for Python",
long_description=readme(),
long_description_content_type='text/markdown',
keywords="pusher websocket client liquid liquidapi liquidtap",
author="Jered Masters",
author_email="[email protected]",
license="MIT",
url="https://github.com/QuoineFinancial/liquid-tap-python",
install_requires=requirements,
packages=find_packages(exclude=['contrib', 'docs', 'websocket-client', 'txaio']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)