-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 1.26 KB
/
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
29
30
31
32
33
34
35
36
# coding: utf-8
try:
import setuptools
from setuptools import setup, find_packages
except ImportError:
print("Please install setuptools.")
import os
long_description = 'Get current coin (btc/eth/xrp) ticker from exchanges (bitflyer/btcbox/zaif/bitbank/quoinex)'
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup(
name = 'arbitrage',
version = '0.1.7',
description = 'Get current coin (btc/eth/xrp) ticker from exchanges (bitflyer/btcbox/zaif/bitbank/quoinex)',
long_description = long_description,
license = 'MIT',
author = '10mohi6',
author_email = '[email protected]',
url = 'https://github.com/10mohi6/arbitrage-python',
keywords = 'arbitrage',
py_modules=['arbitrage'],
install_requires = ['grequests'],
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Software Development :: Build Tools',
'Topic :: Office/Business :: Financial :: Investment',
'License :: OSI Approved :: MIT License'
]
)