-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
49 lines (43 loc) · 1.23 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "webdiff"
version = "1.3.0"
description = "Two-column web-based git difftool"
license = "Apache-2.0"
readme = "README.md"
authors = [ "Dan Vanderkam <[email protected]>" ]
homepage = "https://github.com/danvk/webdiff/"
repository = "https://github.com/danvk/webdiff/"
keywords = [ "git", "difftool", "web" ]
exclude = ["tests*"]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Version Control"
]
# This is generated, so it's in .gitignore. But we need to package it.
include = ["webdiff/static/js/file_diff.js"]
[tool.poetry.dependencies]
python = "^3.10"
binaryornot = "*"
pillow = "*"
PyGithub = "2.3.0"
unidiff = "==0.7.4"
aiohttp = "^3.9.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
ruff = "^0.4.6"
[tool.poetry.scripts]
webdiff = "webdiff.app:run"
git-webdiff = "webdiff.gitwebdiff:run"
git-webshow = "webdiff.gitwebshow:run"
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true