mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-18 12:00:28 +01:00
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools >= 61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "fs-uae-wrapper"
|
|
authors = [{name = "Roman Dobosz", email = "gryf73@gmail.com"}]
|
|
license = {text = "BSD"}
|
|
description = "Automate archives support and state saves for fs-uae"
|
|
readme = "README.rst"
|
|
requires-python = ">=3.8"
|
|
keywords = ["uae", "fs-uae", "amiga", "emulator", "wrapper"]
|
|
version = "0.10.0"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"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",
|
|
"Topic :: System :: Emulators",
|
|
"Topic :: Games/Entertainment"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/gryf/fs-uae-wrapper"
|
|
|
|
[project.scripts]
|
|
fs-uae-wrapper = "fs_uae_wrapper.wrapper:run"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["fs_uae_wrapper"]
|
|
|
|
[tool.distutils.bdist_wheel]
|
|
universal = true
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"F", # pyflakes
|
|
"E", # pycodestyle
|
|
"I", # isort
|
|
"RUF", # ruff-specific rules
|
|
]
|