Skip to content

Commit 6ec7112

Browse files
committed
fix: pyproject toml console scripts keyname
1 parent 58c9c8b commit 6ec7112

2 files changed

Lines changed: 1164 additions & 23 deletions

File tree

pyproject.toml

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,55 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "scratchattach"
77
version = "2.1.13"
8-
authors = [{name = "TimMcCool"}]
8+
authors = [{ name = "TimMcCool" }]
99
description = "A Scratch API Wrapper"
1010
requires-python = ">= 3.12"
1111
dependencies = [
12-
"websocket-client",
13-
"requests",
14-
"bs4",
15-
"SimpleWebSocketServer",
16-
"typing-extensions",
17-
"browser_cookie3",
18-
"aiohttp",
19-
"rich"
12+
"websocket-client",
13+
"requests",
14+
"bs4",
15+
"SimpleWebSocketServer",
16+
"typing-extensions",
17+
"browser_cookie3",
18+
"aiohttp",
19+
"rich",
2020
]
2121
readme = "README.md"
2222
license = "MIT"
2323
license-files = ["LICENSE"]
24-
keywords = ["scratch api", "scratchattach", "scratch api python", "scratch python", "scratch for python", "scratch", "scratch cloud", "scratch cloud variables", "scratch bot"]
25-
classifiers=[
26-
"Development Status :: 5 - Production/Stable",
27-
"Intended Audience :: Developers",
28-
"Programming Language :: Python :: 3",
29-
"Operating System :: Unix",
30-
"Operating System :: MacOS :: MacOS X",
31-
"Operating System :: Microsoft :: Windows",
24+
keywords = [
25+
"scratch api",
26+
"scratchattach",
27+
"scratch api python",
28+
"scratch python",
29+
"scratch for python",
30+
"scratch",
31+
"scratch cloud",
32+
"scratch cloud variables",
33+
"scratch bot",
34+
]
35+
classifiers = [
36+
"Development Status :: 5 - Production/Stable",
37+
"Intended Audience :: Developers",
38+
"Programming Language :: Python :: 3",
39+
"Operating System :: Unix",
40+
"Operating System :: MacOS :: MacOS X",
41+
"Operating System :: Microsoft :: Windows",
3242
]
3343

3444
[project.urls]
3545
Source = "https://github.com/timmccool/scratchattach"
3646
Homepage = "https://scratchattach.tim1de.net"
3747

38-
[project.entry-points."console_scripts"]
48+
[project.scripts]
3949
scratch = "scratchattach.__main__:main"
4050

4151
[project.optional-dependencies]
4252
cli = ["rich-pixels"]
4353
lark = ["lark"]
4454

4555
[tool.setuptools.packages]
46-
find = {include = ["scratchattach"]}
56+
find = { include = ["scratchattach"] }
4757

4858
[dependency-groups]
49-
dev = [
50-
"cryptography>=46.0.3",
51-
"pytest>=9.0.2",
52-
]
59+
dev = ["cryptography>=46.0.3", "pytest>=9.0.2"]

0 commit comments

Comments
 (0)