generated from tomchen/example_pypi_package
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (49 loc) · 1.75 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
52
53
54
55
56
[build-system]
requires = ["setuptools>=46.4.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "synth_mapping_helper"
dependencies = [
"numpy==1.26.4",
"scipy==1.14.1",
"matplotlib==3.9.3",
"plotly==5.24.1",
"pyperclip==1.9.0",
"watchdog==6.0.0",
"requests==2.32.3",
"nicegui==2.8.1",
"librosa==0.10.2.post1",
"soundfile==0.12.1",
"pywin32==308; sys_platform=='win32'",
]
requires-python = ">=3.10"
authors = [{"name"="adosikas"}]
description = "Toolbox for manipulating the JSON-Format used by Synth Riders Beatmap Editor in the clipboard"
readme = "README.md"
license = {"file"="LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Artistic Software",
"Topic :: Games/Entertainment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "synth_mapping_helper.__version__"}
[project.urls]
Homepage = "https://github.com/adosikas/synth_mapping_helper"
Documentation = "https://github.com/adosikas/synth_mapping_helper/wiki"
Repository = "https://github.com/adosikas/synth_mapping_helper"
"Bug Tracker" = "https://github.com/adosikas/synth_mapping_helper/issues"
Changelog = "https://github.com/adosikas/synth_mapping_helper/releases"
[project.scripts]
smh-cli = "synth_mapping_helper.cli:entrypoint"
smh-gui = "synth_mapping_helper.gui:entrypoint"
smh-companion = "synth_mapping_helper.companion:entrypoint"