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