-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
30 lines (27 loc) · 914 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
[tool.poetry]
name = "klembord"
version = "0.3.0"
description = "Full toolkit agnostic cross-platform clipboard access"
readme = "README.md"
keywords = ["clipboard", "cross-platform"]
authors = ["Ozymandias <[email protected]>"]
license = "MIT"
repository = "https://github.com/OzymandiasTheGreat/klembord"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = "^3.6"
python-xlib = { version = "^0.26", markers = "sys_platform == 'linux'" }
stopit = { version = "^1.1.2", markers = "sys_platform == 'linux'" }
[tool.poetry.dev-dependencies]
mypy = "^0.930"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"