-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
24 lines (23 loc) · 854 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
# Melchi
from setuptools import setup, find_packages
setup(
name="pyindependentreserve",
version="0.4.1",
description="Python client for Interacting with Independent Reserve API - The Bitcoin and Digital Currency Market",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/MelchiSalins/pyindependentreserve",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
keywords="Bitcoin BlockChain Crypto-currency",
author="Melchi Salins",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=["requests>=2.22.0", "websockets==9.1"],
include_package_data=True,
zip_safe=True,
)