-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 850 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 850 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = 'binance_data',
packages = ['binance_data'],
version = 'v0.1.6',
license='MIT',
description = 'Python package to retrieve historical data from Binance',
author = 'Jeff Bingaman',
author_email = 'bingaman.jeff@gmail.com',
url = 'https://github.com/uneasyguy/binance_data',
download_url = 'https://github.com/uneasyguy/binance_data/archive/v0.1.5.tar.gz',
keywords = ['Binance', 'Cryptocurrency Data', 'OHCLV'],
install_requires=['python-binance',],
classifiers=[
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)