-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (41 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (41 loc) · 1.57 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
38
39
40
41
42
43
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "bse"
version = "3.3.1"
description = "Unofficial Python Api for BSE India stock exchange"
readme = "README.md"
keywords = [ "bse", "bse-stock-data", "stock-market-api", "stock-news-api" ]
authors = [
{ name = "Benny Thadikaran" },
]
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [ "mthrottle>=0.0.1", "requests>=2.31" ]
optional-dependencies.dev = [
"furo==2023.9.10",
"sphinx==7.4.7",
]
urls."Bug Tracker" = "https://github.com/BennyThadikaran/BseIndiaApi/issues"
urls.Homepage = "https://github.com/BennyThadikaran/BseIndiaApi"
[tool.hatch]
build.targets.sdist.exclude = [ "docs", "tests", ".github", "src/samples", "src/examples" ]
build.targets.wheel.exclude = [ "docs", "tests", ".github", "src/samples", "src/examples" ]