forked from firecat53/py_curses_editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.25 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "py-curses-editor"
dynamic = ["version"]
description = "A configurable curses text editor window"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Scott Hansen", email = "[email protected]" },
]
keywords = [
"console",
"curses",
"editor",
"utility",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Text Editors",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/firecat53/py_curses_editor"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "editor/_version.py"
[tool.hatch.build.targets.wheel.shared-data]
"CHANGELOG.md" = "share/doc/py_curses_editor/CHANGELOG.md"
"LICENSE.txt" = "share/doc/py_curses_editor/LICENSE.txt"
"README.md" = "share/doc/py_curses_editor/README.md"
[tool.hatch.build.targets.sdist]
include = [
"/editor",
]