forked from PrintNode/PrintNode-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.66 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "printnode_community"
version = "0.3.0"
description = "Community-maintained Python client for PrintNode's API"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "PrintNode", email = "support@printnode.com" },
]
maintainers = [
{ name = "Community maintainers" },
]
keywords = ["printnode", "printing", "api", "client"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"future>=1.0.0",
"requests>=2.32.0",
]
[project.urls]
Homepage = "https://github.com/cbusillo/printnode_community"
Repository = "https://github.com/cbusillo/printnode_community"
Issues = "https://github.com/cbusillo/printnode_community/issues"
"Upstream Repository" = "https://github.com/PrintNode/PrintNode-Python"
"PrintNode API Documentation" = "https://www.printnode.com/en/docs/api/curl"
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"pytest>=8.3.5",
"twine>=6.1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["printnode_community"]
[tool.pytest.ini_options]
testpaths = ["tests"]