Compare commits

..

No commits in common. "af9842aa9e7352e20947ca8108f0560bd97824db" and "0c93b45e948b7a81a7c7ee591f027027423a0be9" have entirely different histories.

3 changed files with 19 additions and 28 deletions

View file

@ -1,4 +1,4 @@
__version__ = '0.0.1' __version__ = '0.0.0'
import sys import sys

View file

@ -1,32 +1,34 @@
[build-system] [build-system]
requires = ["hatchling"] requires = ['hatchling']
build-backend = "hatchling.build" build-backend = 'hatchling.build'
[project] [project]
authors = [ authors = [
{ name = "Marc Beninca", email = "git@marc.beninca.link" }, { name = 'Marc Beninca', email = 'git@marc.beninca.link' },
] ]
maintainers = [ maintainers = [
{ name = "Marc Beninca", email = "git@marc.beninca.link" }, { name = 'Marc Beninca', email = 'git@marc.beninca.link' },
] ]
classifiers = [ classifiers = [
"Programming Language :: Python :: 3", 'Programming Language :: Python :: 3',
"License :: OSI Approved :: GNU Affero General Public License v3", 'License :: OSI Approved :: GNU Affero General Public License v3',
"Operating System :: OS Independent", 'Operating System :: OS Independent',
] ]
dependencies = ["rwx"] dependencies = [
description = "Operating File System Profile" 'rwx',
dynamic = ["version"] ]
description = 'Operating File System Profile'
dynamic = ['version']
keywords = [] keywords = []
license-files = ["license.md"] license-files = { paths = ['license.md'] }
name = "ofsp" name = 'ofsp'
readme = "readme.md" readme = 'readme.md'
requires-python = ">= 3.11" requires-python = '>= 3.10'
[project.scripts] [project.scripts]
ofsp = "ofsp:main" ofsp = 'ofsp:main'
[project.urls] [project.urls]
[tool.hatch.version] [tool.hatch.version]
path = "ofsp/__init__.py" path = 'ofsp/__init__.py'

View file

@ -1,11 +0,0 @@
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out" / "web"
make_directory(out)
write(out / "index.html", "ofsp.rwx.work")