static-http 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {static_http-0.1.1 → static_http-0.1.2}/LICENSE +1 -1
  2. {static_http-0.1.1 → static_http-0.1.2}/PKG-INFO +2 -2
  3. {static_http-0.1.1 → static_http-0.1.2}/pyproject.toml +2 -2
  4. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/__init__.py +1 -1
  5. {static_http-0.1.1 → static_http-0.1.2}/src/static_http.egg-info/PKG-INFO +2 -2
  6. {static_http-0.1.1 → static_http-0.1.2}/README.md +0 -0
  7. {static_http-0.1.1 → static_http-0.1.2}/setup.cfg +0 -0
  8. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/__main__.py +0 -0
  9. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/cli.py +0 -0
  10. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/keyboard.py +0 -0
  11. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/qrcode.py +0 -0
  12. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/ranges.py +0 -0
  13. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/server.py +0 -0
  14. {static_http-0.1.1 → static_http-0.1.2}/src/http_here/urls.py +0 -0
  15. {static_http-0.1.1 → static_http-0.1.2}/src/static_http.egg-info/SOURCES.txt +0 -0
  16. {static_http-0.1.1 → static_http-0.1.2}/src/static_http.egg-info/dependency_links.txt +0 -0
  17. {static_http-0.1.1 → static_http-0.1.2}/src/static_http.egg-info/entry_points.txt +0 -0
  18. {static_http-0.1.1 → static_http-0.1.2}/src/static_http.egg-info/requires.txt +0 -0
  19. {static_http-0.1.1 → static_http-0.1.2}/src/static_http.egg-info/top_level.txt +0 -0
  20. {static_http-0.1.1 → static_http-0.1.2}/tests/test_cli.py +0 -0
  21. {static_http-0.1.1 → static_http-0.1.2}/tests/test_qrcode.py +0 -0
  22. {static_http-0.1.1 → static_http-0.1.2}/tests/test_ranges.py +0 -0
  23. {static_http-0.1.1 → static_http-0.1.2}/tests/test_server.py +0 -0
  24. {static_http-0.1.1 → static_http-0.1.2}/tests/test_urls.py +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 http-here contributors
3
+ Copyright (c) 2026 John Paul Ellis
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: static-http
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A temporary dependency-free static HTTP server with byte-range support.
5
- Author: static-http contributors
5
+ Author: John Paul Ellis
6
6
  License: MIT
7
7
  Keywords: http,server,static-http,static,range,cli
8
8
  Classifier: License :: OSI Approved :: MIT License
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "static-http"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "A temporary dependency-free static HTTP server with byte-range support."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
11
11
  license = { text = "MIT" }
12
- authors = [{ name = "static-http contributors" }]
12
+ authors = [{ name = "John Paul Ellis" }]
13
13
  dependencies = []
14
14
  keywords = ["http", "server", "static-http", "static", "range", "cli"]
15
15
  classifiers = [
@@ -1,3 +1,3 @@
1
1
  """Utilities for running a dependency-free local static HTTP server."""
2
2
 
3
- __version__ = "0.1.1"
3
+ __version__ = "0.1.2"
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: static-http
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A temporary dependency-free static HTTP server with byte-range support.
5
- Author: static-http contributors
5
+ Author: John Paul Ellis
6
6
  License: MIT
7
7
  Keywords: http,server,static-http,static,range,cli
8
8
  Classifier: License :: OSI Approved :: MIT License
File without changes
File without changes