-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfeng"
dynamic = ["version"]
description = "Python Financial Engineering"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Jaehyuk Choi", email = "pyfe@eml.cc" }
]
keywords = ["finance", "derivatives", "options", "stochastic volatility", "quantitative finance"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Mathematics",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"pandas",
]
[project.urls]
Homepage = "https://github.com/PyFE/PyFENG"
Documentation = "https://pyfeng.readthedocs.io/"
"Bug Tracker" = "https://github.com/PyFE/PyFENG/issues"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["."]
include = ["pyfeng*"]
[tool.setuptools.package-data]
pyfeng = ["data/*.xlsx"]