-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
71 lines (66 loc) · 2.06 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=42", "wheel", "numpy >= 1.24.0"]
build-backend = "setuptools.build_meta"
[project]
name = "finsim"
version = "1.2.2"
authors = [
{name = "Kwan Yuet Stephen Ho", email = "stephenhky@yahoo.com.hk"}
]
description = "Financial simulation and inference"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "LGPL"}
keywords = ["simulation", "finance", "quantitative finance", "inference", "portfolio analysis"]
requires-python = ">=3.10"
classifiers = [
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry"
]
dependencies = [
"numpy>=1.24.0",
"scipy>=1.10.0",
"requests>=2.31.0",
"pandas>=1.5.0",
"quandl>=3.5.0",
"tqdm>=4.49.0",
"tables>=3.8.5",
"yfinance>=0.2.59",
"openpyxl>=3.1.0",
"numba",
"typing-extensions",
"pydantic"
]
[project.urls]
Repository = "https://github.com/stephenhky/FinanceSimulation"
Issues = "https://github.com/stephenhky/FinanceSimulation/issues"
Documentation = "https://financesimulation.readthedocs.io"
[tool.setuptools]
packages = [
"finsim",
"finsim.data",
"finsim.estimate",
"finsim.estimate.native",
"finsim.simulation",
"finsim.portfolio",
"finsim.portfolio.optimize",
"finsim.portfolio.optimize.native",
"finsim.tech",
"finsim.retrieve_stock_symbols_cli",
"finsim.schemas"
]
zip-safe = false
include-package-data = true
package-dir = {"" = "src"}
[project.scripts]
retrieve_stock_symbols = "finsim.retrieve_stock_symbols_cli:main_cli"
[project.optional-dependencies]
test = ["unittest2", "pytest"]
docs = ["sphinx>=4.0.0", "sphinx-rtd-theme>=1.0.0"]