git-lines-graph 2.3.0__tar.gz → 2.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-lines-graph
3
- Version: 2.3.0
3
+ Version: 2.3.1
4
4
  Summary: Git commit lines graph
5
5
  Project-URL: Repository, https://github.com/danielfleischer/git-commits-lines-graph
6
6
  Project-URL: Issues, https://github.com/danielfleischer/git-commits-lines-graph/issues
@@ -0,0 +1,39 @@
1
+ [project]
2
+ name = "git-lines-graph"
3
+ version = "2.3.1"
4
+ description = "Git commit lines graph"
5
+ readme = "README.md"
6
+ license = "GPL-3.0-or-later"
7
+ license-files = ["LICENSE"]
8
+ requires-python = ">=3.9"
9
+ authors = [{ name = "Daniel Fleischer" }]
10
+ keywords = ["git", "visualization", "commits", "graph", "development"]
11
+ classifiers = [
12
+ "Development Status :: 5 - Production/Stable",
13
+ "Intended Audience :: Developers",
14
+ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
15
+ "Operating System :: OS Independent",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.9",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Topic :: Software Development :: Version Control :: Git",
22
+ "Topic :: Scientific/Engineering :: Visualization",
23
+ ]
24
+ dependencies = ["gitpython>=3.1.43", "matplotlib>=3.9.2", "pandas>=2.2.2"]
25
+
26
+ [project.scripts]
27
+ git-lines-graph = "git_lines_graph:main"
28
+
29
+ [project.urls]
30
+ Repository = "https://github.com/danielfleischer/git-commits-lines-graph"
31
+ Issues = "https://github.com/danielfleischer/git-commits-lines-graph/issues"
32
+ Homepage = "https://github.com/danielfleischer/git-commits-lines-graph"
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"
37
+
38
+ [tool.ruff]
39
+ line-length = 120