forked from xeroc/bitshares-pricefeed
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·53 lines (49 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
__VERSION__ = '0.0.10'
assert sys.version_info[0] == 3, "BitShares-PriceFeed requires Python > 3"
setup(
name='bitshares-pricefeed',
version=__VERSION__,
description='Command line tool to assist with price feed generation',
long_description=open('README.md').read(),
download_url='https://github.com/xeroc/bitshares-pricefeed/tarball/' + __VERSION__,
author='Fabian Schuh',
author_email='[email protected]',
maintainer='Fabian Schuh',
maintainer_email='[email protected]',
url='http://www.github.com/xeroc/bitshares-pricefeed',
keywords=['bitshares', 'price', 'feed', 'cli'],
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
],
entry_points={
'console_scripts': [
'bitshares-pricefeed = bitshares_pricefeed.cli:main'
],
},
install_requires=[
"pandas<1.3",
"requests",
"bitshares>=0.3.0 ",
"uptick",
"prettytable",
"click",
"colorama",
"tqdm",
"pyyaml",
"quandl"
],
extras_require = {
'history_db_postgresql': ["SQLAlchemy", "py-postgresql"]
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)