-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 755 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='zaifapi',
version='1.0.1',
description='Zaif Api Library',
long_description='https://pypi.python.org/pypi/zaifapi',
url='https://github.com/Akira-Taniguchi/zaifapi',
author='AkiraTaniguchi',
author_email ='dededededaiou2003@yahoo.co.jp',
packages=find_packages(),
license='MIT',
keywords='zaif bit coin btc xem mona jpy virtual currency block chain',
classifiers=[
'Development Status :: 1 - Planning',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
install_requires=['requests==2.11.1', 'websocket-client==0.37.0', 'Cerberus==0.9.2', 'future==0.15.2']
)