src2epub 0.1__tar.gz → 0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: src2epub
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: Convert source code files to EPUB in case you want to read a codebase on an e-reader (uses EbookLib)
5
5
  Home-page: UNKNOWN
6
6
  Author: Silas S. Brown
@@ -24,7 +24,7 @@ Silas S. Brown 2026 - public domain - no warranty
24
24
 
25
25
 
26
26
 
27
- Usage: python src2epub code-file [output.epub]
27
+ Usage: python src2epub code-files [output.epub]
28
28
 
29
29
 
30
30
 
@@ -1 +1 @@
1
- from setuptools import setup, find_packages;setup(name='src2epub',version='0.1',entry_points={'console_scripts':['src2epub=src2epub.__init__:main']},license='Public Domain',platforms='any',author='Silas S. Brown',author_email='ssb22@cam.ac.uk',description='Convert source code files to EPUB in case you want to read a codebase on an e-reader (uses EbookLib)',long_description=open('src2epub.py').read().split('"""')[1].replace('epub.py','epub').replace(chr(10),chr(10)+chr(10)),long_description_content_type='text/markdown',packages=find_packages(),classifiers=['Programming Language :: Python :: 3','License :: Public Domain','Operating System :: OS Independent'],python_requires='>=3.0')
1
+ from setuptools import setup, find_packages;setup(name='src2epub',version='0.2',entry_points={'console_scripts':['src2epub=src2epub.__init__:main']},license='Public Domain',platforms='any',author='Silas S. Brown',author_email='ssb22@cam.ac.uk',description='Convert source code files to EPUB in case you want to read a codebase on an e-reader (uses EbookLib)',long_description=open('src2epub.py').read().split('"""')[1].replace('epub.py','epub').replace(chr(10),chr(10)+chr(10)),long_description_content_type='text/markdown',packages=find_packages(),classifiers=['Programming Language :: Python :: 3','License :: Public Domain','Operating System :: OS Independent'],python_requires='>=3.0')
@@ -4,7 +4,7 @@ src2epub.py - Convert source files to EPUB suitable for large-font configuration
4
4
  (Tested on a secondhand 2011 Nook Simple Touch)
5
5
  Silas S. Brown 2026 - public domain - no warranty
6
6
 
7
- Usage: python src2epub.py code-file [output.epub]
7
+ Usage: python src2epub.py code-files [output.epub]
8
8
  """
9
9
 
10
10
  import sys,os,html
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: src2epub
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: Convert source code files to EPUB in case you want to read a codebase on an e-reader (uses EbookLib)
5
5
  Home-page: UNKNOWN
6
6
  Author: Silas S. Brown
@@ -24,7 +24,7 @@ Silas S. Brown 2026 - public domain - no warranty
24
24
 
25
25
 
26
26
 
27
- Usage: python src2epub code-file [output.epub]
27
+ Usage: python src2epub code-files [output.epub]
28
28
 
29
29
 
30
30
 
File without changes
File without changes
File without changes