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