Skip to content

Commit

Permalink
Pipfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zaironjacobs committed Oct 7, 2020
1 parent 8c3d05e commit e472236
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 5 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ verify_ssl = true
[dev-packages]
pyinstaller = "*"
pywin32-ctypes = "*"
pytest = "*"

[packages]

Expand Down
88 changes: 87 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ To install:
$ pip install stock-position-calc
```

To upgrade:
```console
$ pip install stock-position-calc --upgrade
```

For some Linux distributions you will need to install the tkinter package:
```console
$ sudo apt update
Expand All @@ -31,15 +36,15 @@ Windows:
```console
$ git clone https://github.com/zaironjacobs/stock-position-calc.git
$ cd stock-position-calc
$ pipenv install
$ pipenv install --dev
$ pipenv run pyinstaller stock_position_calc/app.py --onefile --windowed
```

Linux:
```console
$ git clone https://github.com/zaironjacobs/stock-position-calc.git
$ cd stock-position-calc
$ pipenv install
$ pipenv install --dev
$ pipenv run pyinstaller stock_position_calc/app.py --onefile --windowed
$ sudo chmod +x dist/app
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
with open('README.md', 'r') as fh:
long_description = fh.read()

version = '1.0.4'
version = '1.0.5'

requires = []

Expand Down
2 changes: 1 addition & 1 deletion stock_position_calc/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.4'
__version__ = '1.0.5'

0 comments on commit e472236

Please sign in to comment.