-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.76 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytradingviewlib"
version = "1.0.8"
description = "A Python client library for TradingView Widget API. ✨Using Python to interact with TradingView📈, just like using JavaScript🚀🎉"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "LFC", email = "1531724247@qq.com"}
]
keywords = [
"charting",
"electron",
"indicator",
"javascript",
"pandas-ta",
"python",
"technical-analysis",
"tradingview",
"trading",
"typescript",
"vue",
"binance",
"investing"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"websocket-client>=1.5.1",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pandas>=1.5.0",
"aiohttp>=3.8.0",
"pathlib>=1.0.1",
"pandas-ta>=0.4.71b0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"black>=23.0",
"ruff>=0.0.280",
"mypy>=1.0",
]
[project.urls]
Homepage = "https://github.com/great-bounty/PyTradingView"
Documentation = "https://pytradingview.readthedocs.io"
Repository = "https://github.com/great-bounty/PyTradingView"
"Bug Tracker" = "https://github.com/great-bounty/pytradingview/issues"
[project.scripts]
pytradingview = "pytradingview.cli:main"
[tool.setuptools.packages.find]
include = ["pytradingview*"]
exclude = ["tests*", "examples*", "docs*", "scripts*"]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.ruff]
line-length = 100
select = ["E", "F", "I"]