2024-02-16 19:47:26 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ['hatchling']
|
|
|
|
build-backend = 'hatchling.build'
|
|
|
|
|
2023-01-30 12:29:47 +01:00
|
|
|
[project]
|
|
|
|
authors = [
|
2024-02-16 19:47:26 +01:00
|
|
|
{ name = 'Marc Beninca', email = 'git@marc.beninca.link' },
|
2023-01-30 12:29:47 +01:00
|
|
|
]
|
|
|
|
maintainers = [
|
2024-02-16 19:47:26 +01:00
|
|
|
{ name = 'Marc Beninca', email = 'git@marc.beninca.link' },
|
2023-01-30 12:29:47 +01:00
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
]
|
2025-06-07 19:44:52 +02:00
|
|
|
dependencies = ['rwx']
|
2023-01-30 12:29:47 +01:00
|
|
|
description = 'Operating File System Profile'
|
2024-02-16 23:24:53 +01:00
|
|
|
dynamic = ['version']
|
2024-02-16 19:47:26 +01:00
|
|
|
keywords = []
|
2025-06-07 19:44:52 +02:00
|
|
|
license-files = ['license.md']
|
2023-01-30 12:29:47 +01:00
|
|
|
name = 'ofsp'
|
|
|
|
readme = 'readme.md'
|
2025-06-07 19:44:52 +02:00
|
|
|
requires-python = '>= 3.11'
|
2023-01-30 12:29:47 +01:00
|
|
|
|
2024-02-16 19:47:26 +01:00
|
|
|
[project.scripts]
|
2024-02-17 20:05:31 +01:00
|
|
|
ofsp = 'ofsp:main'
|
2024-02-16 19:47:26 +01:00
|
|
|
|
|
|
|
[project.urls]
|
2024-02-16 23:24:53 +01:00
|
|
|
|
|
|
|
[tool.hatch.version]
|
2024-02-17 01:43:51 +01:00
|
|
|
path = 'ofsp/__init__.py'
|