Local Python module setup and configuration

This commit is contained in:
moshferatu 2024-01-10 05:18:42 -08:00
parent ff897199fc
commit 936b32f35f
4 changed files with 18 additions and 1 deletions

5
.gitignore vendored
View File

@ -1 +1,4 @@
.env
.env
*.egg-info/
__pycache__/
dist/

1
backtesting/__init__.py Normal file
View File

@ -0,0 +1 @@
from backtest_iron_condor import backtest_iron_condor

13
setup.py Normal file
View File

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