rwx/pyproject.toml

36 lines
776 B
TOML
Raw Normal View History

2024-02-16 18:47:41 +00:00
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
authors = [
{ name = 'Marc Beninca', email = 'git@marc.beninca.link' },
]
maintainers = [
{ name = 'Marc Beninca', email = 'git@marc.beninca.link' },
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
]
dependencies = []
description = 'Read Write eXecute'
2024-02-16 22:25:17 +00:00
dynamic = ['version']
2024-02-16 18:47:41 +00:00
keywords = []
license = { file = 'license.md' }
name = 'rwx'
readme = 'readme.md'
2024-02-16 20:17:02 +00:00
requires-python = '>=3.10'
2024-02-16 18:47:41 +00:00
[project.scripts]
2024-02-16 22:25:17 +00:00
# command = 'package.module:function'
2024-02-16 18:47:41 +00:00
[project.urls]
2024-02-16 22:25:17 +00:00
2024-02-16 23:13:20 +00:00
[tool.hatch.build.targets.wheel]
2024-02-16 23:34:09 +00:00
packages = ['src']
2024-02-16 23:13:20 +00:00
2024-02-16 22:25:17 +00:00
[tool.hatch.version]
2024-02-16 23:34:09 +00:00
path = 'src/__init__.py'