-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.27 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
[project]
name = "git-lines-graph"
version = "2.3.2"
description = "Git commit lines graph"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [{ name = "Daniel Fleischer" }]
keywords = ["git", "visualization", "commits", "graph", "development"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = ["gitpython>=3.1.43", "matplotlib>=3.9.2", "pandas>=2.2.2"]
[project.scripts]
git-lines-graph = "git_lines_graph:main"
[project.urls]
Repository = "https://github.com/danielfleischer/git-commits-lines-graph"
Issues = "https://github.com/danielfleischer/git-commits-lines-graph/issues"
Homepage = "https://github.com/danielfleischer/git-commits-lines-graph"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120