11 lines
187 B
Python
11 lines
187 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="ibkr",
|
||
|
version="1.0",
|
||
|
packages=find_packages(),
|
||
|
install_requires=[
|
||
|
'ib_insync',
|
||
|
'pandas'
|
||
|
],
|
||
|
)
|