-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.28 KB
/
pyproject.toml
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
54
55
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "git-sim"
authors = [{ name = "Jacob Stopak", email = "jacob@initialcommit.io" }]
description = "Simulate Git commands on your own repos by generating an image (default) or video visualization depicting the command's behavior."
readme = "README.md"
requires-python = ">=3.7"
keywords = [
"git",
"sim",
"simulation",
"simulate",
"git-simulate",
"git-simulation",
"git-sim",
"manim",
"animation",
"gitanimation",
"image",
"video",
"dryrun",
"dry-run",
]
license = { text = "GPL-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
dependencies = [
"git-dummy",
"gitpython",
"manim",
"opencv-python-headless",
"pydantic_settings",
"typer",
"fonttools",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "git_sim.__version__" }
[project.optional-dependencies]
dev = ["black", "numpy", "pillow", "pytest"]
[project.scripts]
git-sim = "git_sim.__main__:app"
[project.urls]
Homepage = "https://initialcommit.com/tools/git-sim"
Source = "https://github.com/initialcommit-com/git-sim"