-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1.1 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
from setuptools import setup, find_packages
setup(
name='SS_TRADING_BOT',
version='0.1.0',
description=' this project uses the "( ͡° ʖ̯ ͡°) Scalping vs Swing Trading" indicator by edward_Z represented in trading view to trade in kucoin CEX',
author='javad yakuza',
author_email='[email protected][email protected]',
url='https://github.com/Javadyakuza/SS_TRADING_BOT',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords='setuptools making-money ',
python_requires='>=3.7,<4',
install_requires=[
'email_listener',
'kucoin-futures-python'
],
entry_points={
'console_scripts': [
'python/python3 src/signal_maker.py : runs a signal maker {see readMe.md "T_1"}',
'python/python3 src/excutioner.py : runs the trader bot {see readMe.md} "T_2"',
],
},
)