-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (48 loc) · 1.24 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
[tool.poetry]
name = "git-darcs"
version = "0.10.1"
description = " Incremental import of git into darcs and back again"
authors = ["Jean-Louis Fuchs <safe.pen2857@rhizoome.ch>"]
license = "AGPL-3.0-or-later"
homepage = "https://github.com/ganwell/git-darcs"
repository = "https://github.com/ganwell/git-darcs"
keywords = ["git", "darcs", "import", "incremental"]
readme = "README.md"
classifiers = [
"Environment :: Console",
"Operating System :: POSIX",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control",
]
include = [
"LICENSE",
]
[tool.poetry.scripts]
git-darcs = 'git_darcs:main'
[tool.poetry.dependencies]
python = "^3.10"
tqdm = "^4.64.0"
click = "^8.1.3"
readchar = "^4.0.3"
colorama = "^0.4.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
mypy = "^1.3.0"
pdbpp = "^0.10.3"
black = "^24"
isort = "^5.10.1"
python-lsp-server = "^1.5.0"
flake8 = "^6.0.0"
flake8-bugbear = "^24"
flake8-debugger = "^4.1.2"
flake8-isort = "^6.0.0"
flake8-docstrings = "^1.6.0"
flake8-string-format = "^0.3.0"
flake8-tuple = "^0.4.1"
python-lsp-black = "^1.3.0"
flake8-pyproject = "^1.2.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 160