-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.29 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
import os
from setuptools import setup
base_path = os.path.dirname(__file__)
with open(os.path.join(base_path, "README.md"), encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(name='crypto_reflex',
version='1.0.2',
packages=['crypto_reflex'],
entry_points={
'console_scripts': [
'crypto_reflex = crypto_reflex.main:main'
]
},
license='MIT',
description = 'A tool to automatically balance cryptocurrency portfolios',
long_description=readme,
long_description_content_type='text/markdown',
author = 'Draczer01',
author_email = '[email protected]',
url = 'https://github.com/draczer01/Crypto_Reflex',
keywords = ['cryptocurrency', 'portfolio', 'xrp', 'ethereum', 'bitcoin', 'btc', 'eth','balancer','rebalancer'],
install_requires=[
'ccxt',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Investment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)