Skip to content

Commit

Permalink
release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ilcardella committed Mar 14, 2020
1 parent 753e83e commit 4362925
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## []
## [2.2.0] 2020-03-14
### Fixed
- Bug preventing to add a trade with fee equal to zero

Expand Down
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,23 @@

setup(
name="TradingMate",
version="2.1.1",
version="2.2.0",
python_requires=">=3",
package_dir={"": "src"},
packages=find_namespace_packages(where="src"),
scripts=["src/TradingMate.py"],
entry_points={"console_scripts": ["trading_mate = TradingMate:main"]},
install_requires=["alpha-vantage==2.1.3", "pygtail==0.11.1", "yfinance==0.1.54", "lxml==4.5.0"],
package_data={"config": ["*.json"], "data": ["*.json"], "src/UI/assets/gtk": ["*.glade"]},
install_requires=[
"alpha-vantage==2.1.3",
"pygtail==0.11.1",
"yfinance==0.1.54",
"lxml==4.5.0",
],
package_data={
"config": ["*.json"],
"data": ["*.json"],
"src/UI/assets/gtk": ["*.glade"],
},
data_files=[
(os.path.join(os.sep, "opt", "TradingMate", "config"), ["config/config.json"]),
(os.path.join(os.sep, "opt", "TradingMate", "data"), ["data/trading_log.json"]),
Expand Down

0 comments on commit 4362925

Please sign in to comment.