-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 805 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
37
[project]
name = "diffgetr"
version = "0.2.2"
description = "A Python library for comparing nested data structures with detailed diff reporting and interactive navigation."
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
dependencies = [
"deepdiff>=6.0.0"
]
[project.optional-dependencies]
dev = [
"black>=22.0.0",
"build>=0.8.0",
"toml>=0.10.0",
"requests>=2.25.0"
]
[project.urls]
Homepage = "https://github.com/yourusername/diffgetr"
[tool.setuptools]
packages = ["diffgetr", "diffgetr.tests"]
[tool.setuptools.package-data]
diffgetr = ["*.py"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
diffgetr = "diffgetr.diff_get:main"