-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update setup file. Add pyproject.toml
- Loading branch information
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ credentials.json | |
__pycache__ | ||
.pytest_cache | ||
.coverage | ||
.venv | ||
.venv* | ||
*.pyc | ||
*.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[project] | ||
name = "btlib" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Paweł Knioła", email="pawel.kn@gmail.com" }, | ||
] | ||
description = "Python backtest library optimized for testing portfolio performance across hundreds of tickers" | ||
keywords = [ | ||
"python", "python3", "quantitative", "analysis", "backtesting", "portfolio", "parallel", "algorithmic", "trading" | ||
] | ||
readme = "README.md" | ||
license = { file="LICENSE" } | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.7", #Specify which python versions that you want to support | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
] | ||
dependencies = [ | ||
"pandas>=0.22" | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/pawelkn/btlib" | ||
"Bug Tracker" = "https://github.com/pawelkn/btlib/issues" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters