37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[project]
|
|
name = 'py-xbc'
|
|
version = '0.1.0'
|
|
authors = [
|
|
{ name = 'Síle Ekaterin Liszka', email = 'sheila@vulpine.house' }
|
|
]
|
|
description = 'A library for manipulating eXtra BootConfig (XBC) files'
|
|
readme = 'README.md'
|
|
keywords = ['bootconfig', 'xbc', 'configuration']
|
|
dependencies = [
|
|
'pyparsing',
|
|
'pytest'
|
|
]
|
|
requires-python = '>=3.7'
|
|
classifiers = [
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.7',
|
|
'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 :: Utilities'
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc'
|
|
Issues = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc/issues'
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|