ibkr/setup.py

11 lines
187 B
Python
Raw Permalink Normal View History

from setuptools import setup, find_packages
setup(
name="ibkr",
version="1.0",
packages=find_packages(),
install_requires=[
'ib_insync',
'pandas'
],
)