-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 935 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 = "repacolors"
version = "0.8.0"
description = "Small library for color conversion, manipulation, etc."
authors = ["Gyuri Horak <[email protected]>"]
repository = "https://github.com/dyuri/repacolors"
license = "MIT"
readme = "README.md"
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.0"
# for X resources
xcffib = { version = "^0.9.0", optional = true }
[tool.poetry.extras]
xextras = ["xcffib"]
[tool.poetry.dev-dependencies]
tox = "^3.14.3"
pytest = "^5.3.2"
pytest-cov = "^2.8.1"
tox-pyenv = "^1.1.0"
pdoc3 = "^0.7.4"
[tool.poetry.scripts]
repacolor = 'repacolors.command.repacolor:color'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"