-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (32 loc) · 853 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
requires = [
'flask==2.0.1',
'eventlet==0.30.2',
'flask-cors==3.0.10',
'sqlalchemy==1.4',
'Flask-SQLAlchemy==2.5',
'Flask-Migrate==3.1.0',
'sqlalchemy-utils==0.37.8',
'ibapi==9.81.1.post1',
'marshmallow==3.13',
'flask-socketio==5.1.1',
'pytz==2021.3'
]
setup(
name='ktrade',
version='0.0.1',
description='A small utility for entering trades',
long_description=readme,
author='Adrian Hooper',
author_email='[email protected],
url='https://github.com/pareeohnos/ktrade',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
install_requires=requires,
scripts=['ktrade']
)