Skip to content

Commit

Permalink
Update setup file. Add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelkn committed Jan 12, 2024
1 parent 54dfd93 commit f4903db
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ credentials.json
__pycache__
.pytest_cache
.coverage
.venv
.venv*
*.pyc
*.egg-info
30 changes: 30 additions & 0 deletions pyproject.toml
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"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
],
python_requires='>=3.7',
version="0.0.1",
Expand Down

0 comments on commit f4903db

Please sign in to comment.