-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
92 lines (84 loc) · 2.35 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.setuptools.dynamic]
version = {attr = "tinyscript.__info__.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.css", "*.png", "*.txt"]
[project]
name = "tinyscript"
authors = [
{name="Alexandre D'Hondt", email="[email protected]"},
]
description = "Devkit for quickly building CLI tools with Python"
license = {file = "LICENSE"}
keywords = ["python", "development", "programming", "cli", "devkit"]
requires-python = ">=3.8,<4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"argcomplete>=3.0.8",
"asciistuff>=1.3.1",
"bitstring==4.0.2",
"codext>=1.15.4",
"coloredlogs",
"colorful",
"dateparser>=1.1.8",
"dicttoxml",
"fonttools>=4.43.0", # SNYK-PYTHON-FONTTOOLS-6133203
"ipaddress>=1.0.23",
"json2html",
"lazy_object_proxy>=1.9.0",
"markdown2>=2.4.0",
"netaddr",
"netifaces",
"packaging",
"patchy",
"pathlib2",
"pip>=24.0",
"plyer>=2.0.0",
"pydyf>=0.8.0,<0.11.0; python_version=='3.8'",
"pygments>=2.8.1",
"pyminizip",
"pynput",
"pypandoc",
"pypiwin32; sys_platform=='windows'",
"python-magic",
"python-slugify",
"pyyaml>=5.3.1",
"requests>=2.32.2",
"rich",
"setuptools>=70.2.0",
"terminaltables",
"toml",
"tqdm",
"virtualenv>=20.26.3",
"weasyprint>=60.2",
"xmltodict",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
documentation = "https://python-tinyscript.readthedocs.io/en/latest/?badge=latest"
homepage = "https://github.com/dhondta/python-tinyscript"
issues = "https://github.com/dhondta/python-tinyscript/issues"
repository = "https://github.com/dhondta/python-tinyscript"
[project.scripts]
tsm = "tinyscript.__main__:main"