Skip to content

Commit

Permalink
Add requirements.txt, .gitignore, and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wleong1 committed May 22, 2023
1 parent 1325989 commit 7c04d8f
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# IDEs
.vscode/
.idea/

# Intermediate Coverage file
.coverage

# Output files
*.png

# Python runtime
*.pyc
*.egg-info
.pytest_cache

# Virtual environments
venv/
.venv/
23 changes: 23 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
bokeh==3.1.1
contourpy==1.0.7
exceptiongroup==1.1.1
iniconfig==2.0.0
Jinja2==3.1.2
MarkupSafe==2.1.2
numpy==1.24.3
packaging==23.1
pandas==2.0.1
Pillow==9.5.0
pluggy==1.0.0
PyQt5==5.15.9
PyQt5-Qt5==5.15.2
PyQt5-sip==12.12.1
pytest==7.3.1
python-dateutil==2.8.2
pytz==2023.3
PyYAML==6.0
six==1.16.0
tomli==2.0.1
tornado==6.3.2
tzdata==2023.3
xyzservices==2023.5.0
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from setuptools import setup, find_packages

setup(name="StockTracker", version='1.0', packages=find_packages())

0 comments on commit 7c04d8f

Please sign in to comment.