forked from zooko/pyutil
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.93 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
[project]
name = "pyutil"
authors = [
{ name = "tpltnt", email = "tpltnt+pyutil@nkawtg.net" },
]
description = "a collection of utilities for Python programmers"
dynamic = ["version"]
readme = "README.rst"
license = { text = "GPL-2.0-or-later" }
requires-python = ">=2.7"
keywords = ["utilities", "twisted"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"License :: DFSG approved",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
]
[project.urls]
"Homepage" = "https://github.com/tpltnt/pyutil"
"Bug Tracker" = "https://github.com/tpltnt/pyutil/issues"
[project.optional-dependencies]
jsonutil = ['simplejson >= 2.1.0']
randcookie = ['zbase32 >= 1.0']
[project.entry-points.'console_scripts']
randcookie = 'pyutil.scripts.randcookie:main'
tailx = 'pyutil.scripts.tailx:main'
lines = 'pyutil.scripts.lines:main'
randfile = 'pyutil.scripts.randfile:main'
unsort = 'pyutil.scripts.unsort:main'
verinfo = 'pyutil.scripts.verinfo:main'
try_decoding = 'pyutil.scripts.try_decoding:main'
passphrase = 'pyutil.scripts.passphrase:main'
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"