-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 925 Bytes
/
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "gitevo"
version = "0.1.1"
description = "Code evolution analysis for Git repositories"
authors = [
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"gitpython==3.1.44",
"treeminer==0.1.0",
"tree-sitter",
"tree-sitter-python",
"tree-sitter-javascript",
"tree-sitter-typescript",
"tree-sitter-java"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance"
]
[project.scripts]
gitevo = "gitevo.cli:main"
[project.urls]
Homepage = "https://github.com/andrehora/gitevo"
Issues = "https://github.com/andrehora/gitevo/issues"