ofsp/pyproject.toml

33 lines
701 B
TOML
Raw Normal View History

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 18:47:26 +00:00
dynamic = []
keywords = []
license = { file = 'license.md' }
2023-01-30 11:29:47 +00:00
name = 'ofsp'
readme = 'readme.md'
2024-02-16 20:17:17 +00:00
requires-python = '>=3.10'
2023-01-30 11:29:47 +00:00
version = '0.0.0'
2024-02-16 18:47:26 +00:00
[project.scripts]
# command = 'module:function'
[project.urls]