-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 1.94 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
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
72
73
74
75
76
77
[project]
name = "tradingview-screener"
version = "3.2.1"
description = "A package for creating stock screeners with the TradingView API"
authors = [{name = "shner-elmo", email = "770elmo@gmail.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Environment :: Console",
"Typing :: Typed",
]
dependencies = [
"requests>=2,<3",
"pandas>=2,<4",
]
[project.urls]
Repository = "https://github.com/shner-elmo/TradingView-Screener"
Documentation = "https://github.com/shner-elmo/TradingView-Screener/blob/master/README.md"
[dependency-groups]
dev = [
"ipython>=8.16.1",
"ruff>=0.1.3",
"pdoc>=15.0.0",
"pytest>=7.4.3",
"pyright>=1.1.364",
"pandas-stubs>=2.2.2.240807",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tradingview_screener"]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint.pycodestyle]
max-doc-length = 88
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "single"
multiline-quotes = "double"
[tool.ruff.lint.flake8-errmsg]
max-string-length = 20
[tool.pyright]
typeCheckingMode = "standard"
pythonVersion = "3.9"
include = [
"src/tradingview_screener/**",
"tests",
]