12 lines
219 B
Python
12 lines
219 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="tradestation",
|
|
version="1.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'pandas',
|
|
'python-dotenv',
|
|
'requests'
|
|
],
|
|
) |