options-backtesting/setup.py

13 lines
232 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
name='backtesting',
version='1.0',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'plotly',
'python-dotenv'
]
)