-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 1.1 KB
/
setup.py
File metadata and controls
32 lines (27 loc) · 1.1 KB
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
from setuptools import setup, find_packages
import os
VERSION = '1.0.0'
DESCRIPTION = 'Efficiency-first framework for pulling, storing, and aggregating Kraken data using the v2 API.'
LONG_DESCRIPTION = 'Efficiency-first framework for pulling, storing, and aggregating Kraken data using the v2 API.'
# Setting up
setup(
name="kracked",
version=VERSION,
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['numpy', 'pandas', 'ccxt',
'websocket-client', 'toml', 'pyarrow'],
keywords=['cryptocurrency', 'crypto', 'algorithmic trading', 'quantitative finance',
'exchange', 'Kraken'],
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)