-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 962 Bytes
/
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "snailpy"
version = "1.1.0"
dependencies = [
"requests",
]
requires-python = ">=3.8"
authors = [
{name = "Nolan Simpson", email = "[email protected]"},
]
maintainers = [
{name = "Nolan Simpson", email = "[email protected]"}
]
description = "Use the Snail IDE API in your python scripts."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["scratch", "api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://snail-ide.js.org/SnailPy"
Repository = "https://github.com/Snail-IDE/SnailPy.git"
"Bug Tracker" = "https://github.com/Snail-IDE/SnailPy/issues"
[project.scripts]
spam-cli = "spam:main_cli"
[project.gui-scripts]
spam-gui = "spam:main_gui"
[project.entry-points."spam.magical"]
tomatoes = "spam:main_tomatoes"