forked from dougransom/vix_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (47 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
keywords=["vix","volatility","pandas","vix term structure","cboe"]
name = "vix_utils"
authors = [{name="Doug Ransom",email = "[email protected]"}]
description="Provide VIX Cash and Futures Term Structure as Pandas dataframes"
classifiers = ["License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment"]
readme="README.md"
requires-python=">=3.11"
dynamic=["version"]
dependencies= [
"pandas",
"pandas-market-calendars",
"aiofiles",
"aiohttp[speedups]",
"openpyxl",
"appdirs"]
[project.optional-dependencies]
test=["pytest"]
examples=["matplotlib","scipy"]
[tool.pytest.ini_options]
minversion = "7.1.2"
addopts = "--capture=tee-sys "
# very important
#the pythonpath lets pytest load code in your source area
#in addition to that in site-packages etc.
#you may want to run your tests without install natlinkcore with flit or pip
pythonpath = [
]
testpaths= [
"test",
]
python_files = [
"test_*.py",
]
[project.scripts]
vixutil = "vix_utils.vixutil:main"
#samples
vix_sample_plots="vix_utils.examples.sample_plots:main"
vix_sample_load_data="vix_utils.examples.sample_load_data:main"
[project.urls]
home-page = "https://github.com/dougransom/vix_utils"