-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1018 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (34 loc) · 1018 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pythonsed"
authors = [
{ name="Frank Schäckermann", email="pypi-fschaeckermann@snkmail.com" },
]
description = "This package delivers a fully GNU sed compatible sed implementation in Python."
readme = "README.md"
keywords = [
"GNU sed",
"sed",
"stream editor",
]
license = "GPL-3.0-only"
requires-python = ">=2.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
dependencies = [ ]
dynamic = [ "version" ]
[project.urls]
"Homepage" = "https://github.com/fschaeck/PythonSed"
"Bug Tracker" = "https://github.com/fschaeck/PythonSed/issues"
[project.scripts]
pythonsed = "PythonSed.sed:main"