-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
73 lines (63 loc) · 1.86 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
72
73
[tool.poetry]
name = "tradingview-screener"
version = "3.0.0-rc.1"
description = "A package for creating stock screeners with the TradingView API"
authors = ["shner-elmo <770elmo@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "tradingview_screener", from = "src"}]
repository = "https://github.com/shner-elmo/TradingView-Screener"
documentation = "https://github.com/shner-elmo/TradingView-Screener/blob/master/README.md"
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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Environment :: Console",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.9"
requests = "2.*"
pandas = "2.*"
[tool.poetry.group.dev.dependencies]
ipython = "^8.16.1"
ruff = "^0.1.3"
pdoc = "^15.0.0"
pytest = "^7.4.3"
pyright = "^1.1.364"
#[tool.poetry.extras]
#df = ["pandas"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint.pycodestyle]
max-doc-length = 88
#max-line-length = 100
[tool.ruff.format]
quote-style = "single"
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "single"
multiline-quotes = "double"
[tool.ruff.flake8-errmsg]
max-string-length = 20
[tool.pyright]
typeCheckingMode = "standard"
pythonVersion = "3.9"
include = [
"src/tradingview_screener/**",
"tests",
]