-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
39 lines (34 loc) · 983 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
38
39
[tool.poetry]
name = "xdg-open-wsl"
version = "1.0.0"
description = "xdg-open replacement for WSL that opens files and links using Windows apps."
authors = ["Charl P. Botha (X1E) <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/cpbotha/xdg-open-wsl"
repository = "https://github.com/cpbotha/xdg-open-wsl"
keywords = ["xdg-open", "windows", "linux", "wsl"]
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Desktop Environment",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
click = "^7.1.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.7.9"
black = "^19.10b0"
[tool.poetry.scripts]
xdg-open = 'xdg_open_wsl:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
# change black's default from 88 characters to 120 characters
line-length = 120