forked from yagays/pybitflyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 811 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="pybitflyer",
packages=['pybitflyer'],
version="0.1.9",
description="Python wrapper for bitFlyer's REST API.",
author="yag_ays",
author_email="[email protected]",
url="https://github.com/yagays/pybitflyer",
install_requires=['requests'],
keywords=["bitcoin", "bitflyer", "wrapper", "REST API"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)