-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-ram-flow"
version = "0.1.1"
description = "A high-precision memory flow tracker with premium HTML reporting"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "addonol", email = "addonol.github@example.com" }]
license = { text = "MIT" }
keywords = ["memory", "profiler", "tracking", "django", "oracle", "audit"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Debuggers",
"Intended Audience :: Developers",
]
dependencies = [
"psutil>=5.9.0",
"rich>=13.0.0",
]
[project.urls]
Homepage = "https://github.com/addonol/python-ram-flow"
Repository = "https://github.com/addonol/python-ram-flow.git"
Issues = "https://github.com/addonol/python-ram-flow/issues"
[tool.hatch.build.targets.wheel]
packages = ["ramflow"]
[tool.hatch.build]
exclude = [
"/examples",
"/assets",
"/.github",
"/.pre-commit-config.yaml",
"/SECURITY.md",
"uv.lock",
]
[dependency-groups]
dev = [
"ruff",
"django>=5.2.13",
"pre-commit"
]
[tool.ruff]
line-length = 88
target-version = "py310"