-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (51 loc) · 1.48 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
54
55
56
'''
Copyright (C) 2018-2020 Bryant Moscon - [email protected]
Please see the LICENSE file for the terms and conditions
associated with this software.
'''
from setuptools import setup
from setuptools import find_packages
ld = None
try:
import pypandoc
ld = pypandoc.convert_file('README.md', 'rst', format='markdown_github')
except BaseException:
pass
setup(
name="cryptostore",
version="0.3.0",
author="Bryant Moscon",
author_email="[email protected]",
description=("Storage engine for cryptocurrency data"),
long_description=ld,
long_description_content_type='text/x-rst',
license="XFree86",
keywords=["cryptocurrency", "bitcoin", "btc", "market data", "data storage", "redis", "database", "kafka"],
url="https://github.com/bmoscon/cryptostore",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"pandas",
"cryptofeed>=1.3.1",
"pyyaml",
"pyarrow",
"aiohttp",
"aiomysql",
"pymysql",
],
extras_require={
'redis': ['redis', 'aioredis'],
'kafka': ['aiokafka', 'confluent-kafka'],
'arctic': ['arctic'],
'gcs': ['google-cloud-storage'],
'aws': ['boto3'],
'zmq': ['pyzmq']
},
entry_points = {
'console_scripts': ['cryptostore=cryptostore.bin.cryptostore:main'],
}
)