-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = 'space_tracer'
dynamic = ['version', 'authors', 'description']
dependencies = []
readme = 'README.md'
license = "MIT"
license-files = ["license.txt"]
# Synchronize Python versions with py-build.yml workflow and tox.ini.
# Classifiers are from https://pypi.org/classifiers/
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Debuggers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console"
]
[project.urls]
Source = "https://github.com/donkirkby/live-py-plugin"
Issues = "https://github.com/donkirkby/live-py-plugin/issues"
[project.scripts]
space_tracer = "space_tracer:main"