Skip to content

Commit

Permalink
Add missing package declaration in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ttt733 committed Feb 6, 2020
1 parent 7fcb66e commit b21b89b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alpaca_trade_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .rest import REST # noqa
from .stream2 import StreamConn # noqa

__version__ = '0.43'
__version__ = '0.44'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author_email='[email protected]',
url='https://github.com/alpacahq/alpaca-trade-api-python',
keywords='financial,timeseries,api,trade',
packages=['alpaca_trade_api', 'alpaca_trade_api.polygon'],
packages=['alpaca_trade_api', 'alpaca_trade_api.polygon', 'alpaca_trade_api.alpha_vantage'],
install_requires=[
'asyncio-nats-client',
'pandas',
Expand Down

0 comments on commit b21b89b

Please sign in to comment.