forked from scottjbarr/bitfinex-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 692 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
# Runtime dependencies. See requirements.txt for development dependencies.
dependencies = [
'requests',
'httpretty'
]
version = '0.2.6'
setup(name='bitfinex',
version=version,
description = 'Python client for the Bitfinex API',
author = 'Scott Barr',
author_email = 'scottjbarr@gmail.com',
url = 'https://github.com/scottjbarr/bitfinex',
license = 'MIT',
packages=['bitfinex'],
scripts = ['scripts/bitfinex-poll-orderbook'],
install_requires = dependencies,
download_url = 'https://github.com/scottjbarr/bitfinex/tarball/%s' % version,
keywords = ['bitcoin', 'btc'],
classifiers = [],
zip_safe=True)