-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (34 loc) · 1.34 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bse"
version = "2.0.1"
authors = [
{ name="Benny Thadikaran" },
]
description = "Unofficial Python Api for BSE India stock exchange"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Natural Language :: English",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
keywords = ["bse", "bse-stock-data", "stock-market-api", "stock-news-api"]
dependencies = ["requests>=2.31.0", "mthrottle>=0.0.1"]
[project.urls]
"Homepage" = "https://github.com/BennyThadikaran/BseIndiaApi"
"Bug Tracker" = "https://github.com/BennyThadikaran/BseIndiaApi/issues"
[tool.hatch.build.targets.sdist]
exclude = ["docs", "tests", ".github", "src/samples", "src/examples"]
[tool.hatch.build.targets.wheel]
exclude = ["docs", "tests", ".github", "src/samples", "src/examples"]