forked from vilkovgr/qmoms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.03 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qmoms"
version = "0.1"
description = "Option-implied moments from implied volatility surface data"
license = { file = "LICENSE.md" }
readme = "README.md"
keywords = ["implied variance", "variance swap", "VIX", "MFIV", "CVIX", "skewness"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"numpy >=1.19",
"pandas >=2.0",
"scipy >=1.10",
"tqdm >=4.0",
]
[tool.setuptools]
include-package-data = true
package-dir = { "" = "." }
package-data = { "qmoms" = ["data/*.csv"] }
[tool.setuptools.packages.find]
where = ["."] # This finds packages in the specified directory
[project.urls]
Homepage = "https://github.com/vilkovgr/qmoms"