-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
31 lines (27 loc) · 1.03 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
[build-system]
# 62.1.0 changes the folder layout for built extensions -- we need the new layout
# (Before that, 61 is the first version supporting pyproject.toml.)
requires = ["setuptools >= 62.1", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "coilsnake"
dynamic = ["version"]
description = "CoilSnake"
urls = {Homepage = "https://pk-hack.github.io/CoilSnake"}
requires-python = ">=3.8"
dependencies = [
"Pillow>=3.0.0",
"PyYAML>=3.11",
"CCScriptWriter @ https://github.com/pk-hack/CCScriptWriter/tarball/master",
"ccscript @ https://github.com/charasyn/ccscript_legacy/archive/refs/tags/v1.500.tar.gz",
# ??? CoilSnake hasn't been tested on Mac in a while. Is this still needed?
"pyobjc-framework-Cocoa; platform_system == 'Darwin'",
]
[project.scripts]
coilsnake-cli = "coilsnake.ui.cli:main"
# Comment out the next line to make CoilSnake launch with a terminal window on Windows
[project.gui-scripts]
coilsnake = "coilsnake.ui.gui:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]