-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.2 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nsepit"
version = "0.1.0"
description = "Point-in-time NSE index membership and survivorship-free universes, with a harness that measures survivorship bias per strategy instead of hand-waving at it."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Anuroop Bisaria" }]
keywords = ["nse", "point-in-time", "survivorship-bias", "backtesting", "bhavcopy", "india", "equities"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"pandas>=2.2",
"numpy>=1.24",
]
[project.optional-dependencies]
# Only the network paths need these: `nsepit crawl` and `membership --fetch`.
# The bundled snapshot, the parsers, and the whole bias harness do not.
net = ["requests>=2.28", "lxml>=4.9"]
test = ["pytest>=7"]
[project.scripts]
nsepit = "nsepit.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/nsepit"]