-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (57 loc) · 2.07 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
[project]
name = "pycharting"
version = "0.2.16"
description = "High-performance financial charting library for OHLC data visualization with technical indicators"
authors = [
{name = "ali askar", email = "26202651+alihaskar@users.noreply.github.com"},
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["charting", "finance", "ohlc", "technical-indicators", "trading", "visualization"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0,<1.0.0",
"pandas>=2.2.0,<3.0.0",
"numpy>=1.26.0,<3.0.0",
"pydantic>=2.7.0,<3.0.0",
"uvicorn[standard]>=0.24.0,<1.0.0",
]
[dependency-groups]
# Test-only tooling, used under tests/ (which deptry does not scan), not in the
# src/ package. Declared as PEP 735 dependency groups so `uv run` installs them
# by default (see [tool.uv].default-groups) — this keeps `uv run pytest` working
# without `--all-extras`, including under `--resolution lowest-direct`. httpx is
# required transitively by fastapi.testclient but must be pinned directly so the
# lowest-direct resolver still installs it.
test = [
"pytest>=8.3.0,<9.0.0",
"pytest-cov>=6.0.0",
"httpx>=0.27.0,<0.29.0",
]
lint = [
"ruff>=0.6.0",
]
[tool.uv]
# Install the test and lint groups by default so `uv run` has them available
# without an explicit `--group`/`--all-groups` flag.
default-groups = ["test", "lint"]
[project.urls]
Homepage = "https://github.com/alihaskar/pycharting"
Repository = "https://github.com/alihaskar/pycharting"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pycharting"]