-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["opes*"]
[tool.poetry.extras]
dev = ["pytest", "other-dev-packages"]
[project]
name = "opes"
version = "0.11.4"
description = "A research-focused portfolio optimization and backtesting engine."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "Nitin Tony Paul", email = "nitintonypaul@gmail.com"}]
dependencies = [
"numpy>=2.2.6,<3.0",
"pandas>=2.3.3,<3.0",
"scipy>=1.15.2,<2.0",
"matplotlib>=3.10.1,<4.0"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment"
]
[project.urls]
repository = "https://github.com/opes-core/opes"
documentation = "https://opes.pages.dev"