forked from rominf/winapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 996 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
[tool.poetry]
name = "winapps"
version = "0.1.6"
description = "Python library for managing installed applications on Windows"
authors = ["Roman Inflianskas <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/rominf/winapps"
keywords = ["library", "windows", "apps", "applications", "programs", "management"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration"
]
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = {version = "^0.6.0",python = "~3.6"}
plumbum = "^1.6"
[tool.poetry.dev-dependencies]
pytest = "^4.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"