-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (31 loc) · 825 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
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
VERSION = '1.1.1'
# Runtime dependencies. See requirements.txt for development dependencies.
DEPENDENCIES = [
"wheel",
"pandas",
"pillow",
"selenium",
"bokeh",
"python-telegram-bot",
"bitfinex-v2==1.0.0"
]
setup(
name='bfxtelegram',
version=VERSION,
description='Control Bitfinex account with a Telegram bot',
author='Dan Timofte',
author_email='[email protected]',
url='https://github.com/dantimofte/bfxtelegram',
license='MIT',
packages=find_packages(),
install_requires=DEPENDENCIES,
keywords=['bitcoin', 'btc', 'iota', 'telegram', 'bitfinex'],
classifiers=[],
zip_safe=True,
entry_points={
"console_scripts": [
"bfxtelegram = bfxtelegram.__main__:main",
],
},
)