-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.43 KB
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
[project]
name = "edit-python-pe"
version = "0.2.10"
description = "Allows member and project profile editing onto python.pe git repository"
readme = "README.md"
authors = [
{ name = "Jean-Pierre Chauvel", email = "jean.p.chauvel@gmail.com" },
]
requires-python = ">=3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Documentation :: Sphinx",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
module = "edit_python_pe"
dependencies = [
"pygit2==1.18.2",
"textual==6.1.0",
"pygithub==2.8.1",
"pyyaml==6.0.2",
"platformdirs==4.4.0",
"babel==2.17.0",
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "http://github.com/pythonpe/edit-python.pe"
Documentation = "https://github.com/pythonpe/edit-python.pe/blob/main/README.md"
Repository = "http://github.com/pythonpe/edit-python.pe"
Issues = "https://github.com/pythonpe/edit-python.pe/issues"
[project.scripts]
edit-python-pe = "edit_python_pe.main:main"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/edit_python_pe/__about__.py"
[tool.black]
line-length = 79
[dependency-groups]
dev = [
"black>=25.1.0",
"deep-translator>=1.11.4",
"isort>=6.0.1",
"polib>=1.2.0",
"pre-commit>=4.3.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"textual-dev==1.7.0",
"tomli-w>=1.2.0",
]