tinyssg 0.0.3__tar.gz → 0.0.6__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tinyssg
3
- Version: 0.0.3
3
+ Version: 0.0.6
4
4
  Summary: A simple static site generator
5
5
  Author: Uniras
6
6
  Author-email: tkappeng@gmail.com
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tinyssg"
7
- version = "0.0.3"
7
+ version = "0.0.6"
8
8
  description = "A simple static site generator"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -103,7 +103,7 @@ class TinySSGUtility:
103
103
 
104
104
  print(message)
105
105
 
106
- def error_print(cla, message: str) -> None:
106
+ def error_print(cls, message: str) -> None:
107
107
  """
108
108
  Output error message
109
109
  """
@@ -677,7 +677,7 @@ class TinySSG:
677
677
  """
678
678
  Set the argument parser
679
679
  """
680
- parser = argparse.ArgumentParser(prog='TinySSG', description='TinySSG Simple Static Site Generate Tool')
680
+ parser = argparse.ArgumentParser(prog='python -m tinyssg', description='TinySSG Simple Static Site Generate Tool')
681
681
  parser.add_argument('mode', choices=['dev', 'gen', 'cls', 'serv', 'servreload', 'config'], help='Select the mode to run (gen = Generate HTML files, dev = Run the debug server)')
682
682
  parser.add_argument('--port', '-P', type=int, default=8000, help='Port number for the debug server')
683
683
  parser.add_argument('--page', '-p', type=str, default='pages', help='Page file path')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tinyssg
3
- Version: 0.0.3
3
+ Version: 0.0.6
4
4
  Summary: A simple static site generator
5
5
  Author: Uniras
6
6
  Author-email: tkappeng@gmail.com
File without changes
File without changes