-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 706 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 706 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
from distutils.core import setup
setup(name='paperbroker',
version='0.1.3',
description='PaperBroker',
author='Philip ODonnell',
author_email='philip@postral.com',
url='https://github.com/philipodonnell/paperbroker',
packages=['paperbroker',
'paperbroker.adapters',
'paperbroker.adapters.accounts',
'paperbroker.adapters.quotes',
'paperbroker.adapters.markets',
'paperbroker.logic',
],
install_requires=[
'ivolat3',
'arrow',
'googlefinance',
'flask',
'jsonpickle',
'requests'
]
)