-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (60 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "BharatFinTrack"
description = "Downloading and analyzing financial data, including indices, stocks, bonds, and mutual funds, from India, that is Bharat."
authors = [
{ name="Debasish Pal", email="[email protected]" },
]
dependencies = [
"pandas",
"requests",
"openpyxl",
"xlsxwriter",
"beautifulsoup4",
"matplotlib",
"pyxirr"
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis"
]
dynamic = ["version"]
keywords = [
"NSE Index",
"Download",
"CAGR",
"SIP",
"Visualization"
]
[project.urls]
"Homepage" = "https://github.com/debpal/BharatFinTrack"
"Documentation" = "http://bharatfintrack.readthedocs.io/"
[tool.setuptools.dynamic]
version = {attr = "BharatFinTrack.__version__"}
[tool.setuptools.package-data]
BharatFinTrack = [
"data/*"
]
[tool.pytest.ini_options]
addopts = "-rA -Werror --cov=BharatFinTrack --cov-report=html:cov_BharatFinTrack --cov-report=term -s"
testpaths = [
"tests"
]
[tool.mypy]
files = [
"BharatFinTrack"
]
ignore_missing_imports = true
strict = true