-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 704 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 704 Bytes
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
#!/usr/bin/env python3
# coding: utf-8
# @Author: ArthurBernard
# @Email: arthur.bernard.92@gmail.com
# @Date: 2019-04-19 08:30:03
# @Last modified by: ArthurBernard
# @Last modified time: 2020-02-05 11:33:10
""" Set up the trading_bot package. """
# Built-in packages
from setuptools import find_packages, setup
# Third party packages
# Local packages
setup(
name='trading_bot',
version='0.1.0',
description='Autonomous trading bot in Python for your financial '
'algorithmic strategies [In progress]',
url='https://github.com/ArthurBernard/Trading_Bot',
author=['Arthur Bernard'],
author_email='arthur.bernard.92@gmail.com',
packages=find_packages(),
)