-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "gitx"
version = "0.1.0-a1"
description = "TUI based git helper"
authors = [
{ name = "Ayush", email = "[email protected]" },
{ name = "Ashmit Singh", email = "[email protected]" },
{ name = "Anmol Puri", email = "[email protected]" },
{ name = "Anmol Kakkar", email = "[email protected]" },
]
license = { text = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9, <4.0"
dependencies = ["textual>=2.1.2,<3.0.0"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control :: Git",
]
[project.scripts]
gitxtui = "gitx.main:main"
[project.urls]
Homepage = "https://github.com/gitxtui/gitx"
Documentation = "https://gitxtui.github.io/gitx/"
Issues = "https://github.com/gitxtui/gitx/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "gitxtui"
version = "0.1.0-a1"
description = "TUI based git helper"
authors = [
"Ayush <[email protected]>",
"Ashmit Singh <[email protected]>",
"Anmol Puri <[email protected]>",
"Anmol Kakkar <[email protected]>",
]
readme = "README.md"
packages = [{ include = "gitx", from = "src" }]
[tool.poetry.scripts]
gitxtui = "gitx.main:main"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
textual = ">=2.1.2,<3.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
flake8 = "^7.1.2"
autopep8 = "^2.3.2"
autoflake = "^2.3.1"
isort = "^6.0.1"
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.9"
materialx = "^1.39.3"
pymdown-extensions = "^10.14.3"
material = "^0.1"