-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
39 lines (36 loc) · 953 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 = "upnpclient"
version = "1.0.3"
description = "Python 3 library for accessing uPnP devices."
authors = ["Ellis Percival <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/flyte/upnpclient"
keywords = ["upnp"]
classifiers = [
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Communications",
"Topic :: Home Automation",
"Topic :: System :: Networking",
]
include = ["LICENCE"]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.0.0"
six = "^1.0.0"
python-dateutil = "^2.0.0"
lxml = "^4.0.0"
ifaddr = "^0.1.7"
[tool.poetry.dev-dependencies]
pytest = "^5.0.0"
tox = "^3.0.0"
flake8 = "^3.0.0"
pytest-cov = "^2.0.0"
mock = "^4.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"