forked from louisnw01/lightweight-charts-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 903 Bytes
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 903 Bytes
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
[project]
name = "bn-lightweight-charts"
version = "1.2.2"
description = "Python framework for TradingView's Lightweight Charts JavaScript library."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "smalinin"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"pandas",
"tzlocal",
]
[project.urls]
"Homepage" = "https://github.com/smalinin/bn_lightweight-charts-python"
"Source" = "https://github.com/smalinin/bn_lightweight-charts-python"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["bn_lightweight_charts", "bn_lightweight_charts/**"]
[tool.hatch.build.targets.wheel]
packages = ["bn_lightweight_charts"]