-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.2 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
[build-system]
requires = [
"setuptools>=77.0",
"tomli>=2.0.1; python_version<'3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "getargv"
version = "0.14"
authors = [
{ name="Camden Narzt", email="[email protected]" },
]
description = "Python bindings to libgetargv, a library to correctly and quickly get other process's args"
readme = "README.md"
requires-python = ">=3.9"
license-files = [ "LICENSE.txt" ]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: C',
'Programming Language :: Python :: Implementation :: CPython',
]
[project.urls]
Repository = "https://github.com/getargv/getargv.py"
Issues = "https://github.com/getargv/getargv.py/issues"
Homepage = "https://getargv.narzt.cam"
Documentation = "https://getargv.github.io/getargv.py"
Funding = "https://github.com/sponsors/CamJN"
[tool.pyright]
include = ["src", "setup.py"]
typeCheckingMode = "strict"
reportMissingModuleSource = false