-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 998 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "codeframe"
version = "0.1.0"
description = "Beautiful code screenshots from your terminal — SVG output, syntax highlighting, 5 themes."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [{name = "Seven Du", email = "[email protected]"}]
dependencies = ["pygments>=2.14"]
keywords = ["code", "screenshot", "svg", "syntax-highlighting", "terminal", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Documentation",
"Topic :: Multimedia :: Graphics",
]
[project.urls]
Homepage = "https://github.com/Jah-yee/codeframe"
Repository = "https://github.com/Jah-yee/codeframe"
Issues = "https://github.com/Jah-yee/codeframe/issues"
[project.scripts]
codeframe = "codeframe:main"