-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
40 lines (36 loc) · 933 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
40
[tool.poetry]
name = "alacritty-colorscheme"
version = "1.0.1"
description = "Change colorscheme of alacritty with ease"
license="Apache-2.0"
authors = ["Safar Ligal <[email protected]>"]
readme = "README.md"
repository = "https://github.com/toggle-corp/alacritty-colorscheme/"
keywords = [
"alacritty",
"colorscheme",
"theme",
"base16",
"vim"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.6"
"ruamel.yaml" = "^0.16.10"
typed-argument-parser = "^1.6.3"
pynvim = "^0.4.2"
typing-extensions = "^3.10.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pyright = "^0.0.7"
flake8 = "^3.9.2"
[tool.poetry.scripts]
alacritty-colorscheme = 'alacritty_colorscheme.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"