-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.54 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 = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "git-commits-graph"
version = "0.2.2"
description = "Display graph of changes in number of lines in project or changed lines"
#authors = [{name="Krystian Safjan", email="ksafjan@gmail.com"}]
authors = ["Krystian Safjan <ksafjan@gmail.com>"]
#license = { text = "MIT" }
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
git-commits-graph = 'git_commits_graph.main:main'
[tool.poetry.dependencies]
python = "^3.8"
GitPython = "^3.1.27"
click = "^8.1.3"
pandas = "^1.5.3"
matplotlib = "^3.7.1"
plotly = "^5.14.0"
tqdm = "^4.65.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.2"
pre-commit = "^3.2.1"
tox = "^3.7.0"
tox-poetry = "^0.5.0"
mock = "^5.0.1"
[tool.poetry.group.dev.dependencies]
tox = "^3.7.0"
[project]
# status beta
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Version Control :: Git :: Graph",
"Topic :: Software Development :: Version Control :: Git :: Visualization",
]
[project.urls]
"Source" = "https://github.com/izikeros/git-commits-graph"
"Bug Tracker" = "https://github.com/izikeros/git-commits-graph/issues"