-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (37 loc) · 1.02 KB
/
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
41
42
43
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "libpyvivotek"
authors = [
{name = "Kevin McCormack", email = "[email protected]"},
]
description = "Python Library for Vivotek IP Cameras"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["Camera", "IPC", "vivotek"]
license = {text = "LGPLv3+"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/HarlemSquirrel/python-vivotek"
"Bug Tracker" = "https://github.com/HarlemSquirrel/python-vivotek/issues"
[project.optional-dependencies]
tests = [
"pylint>=2.3",
"vcrpy>=2.0"
]
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "libpyvivotek.VERSION"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
exclude = ["libpyvivotek.tests*"]