-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=70.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "launchd"
dynamic = ["version"]
description = "pythonic interface for macOS launchd"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.10"
license = "MIT"
dependencies = ["pyobjc-framework-ServiceManagement"]
keywords = ["launchd", "macOS", "ServiceManagement", "pyobjc"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: MacOS X",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
authors = [
{ name = "Paul Kremer", email = "paul@spurious.biz" },
]
[project.urls]
Homepage = "https://github.com/infothrill/python-launchd"
Repository = "https://github.com/infothrill/python-launchd"
Issues = "https://github.com/infothrill/python-launchd/issues"
[tool.setuptools.dynamic]
version = { attr = "launchd.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["launchd", "launchd.*"]
[tool.flake8]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D200",
"D204",
"D205",
]
exclude = [".git", "__pycache__", "build", "dist", ".tox", ".eggs", ".direnv"]
max-line-length = 120
inline-quotes = "double"
per-file-ignores = ["example.py:T201"]
[tool.check-manifest]
ignore = [
".coveragerc",
".pre-commit-config.yaml",
".pylintrc",
".renovaterc.json",
".github",
"tox.ini",
"requirements-style.txt",
]