-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 973 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "git-wrapped"
version = "1.0.1"
description = "Spotify Wrapped, but for your Git history. Beautiful terminal visualizations of your coding year."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "Aliza Ali"}
]
keywords = ["git", "cli", "wrapped", "visualization", "terminal", "developer-tools"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"rich>=13.0.0",
]
[project.scripts]
git-wrapped = "git_wrapped.cli:main"
[project.urls]
Homepage = "https://github.com/stackmasteraliza/git-wrapped"
Repository = "https://github.com/stackmasteraliza/git-wrapped"
[tool.setuptools.packages.find]
include = ["git_wrapped*"]