Metadata-Version: 1.1
Name: invogen
Version: 0.2.0
Summary: UNKNOWN
Home-page: https://github.com/samueljsb/InvoGen
Author: Samuel Searles-Bryant
Author-email: devel@samueljsb.co.uk
License: MIT
Project-URL: Documentation, https://invogen.readthedocs.io
Project-URL: Bug Reports, https://github.com/samueljsb/InvoGen/issues
Description: 
        InvoGen
        =======
        
        InvoGen is a package for generating beautiful invoices with Python and LaTeX.
        
        Instructions
        ------------
        
        InvoGen is easy to use! In the command prompt or in a file type:
        
        .. code:: python
        
            from invogen import *
        
            foobar_inc = Customer("test", name="Foobar Inc.")
            invoice = Invoice(foobar_inc)
            invoice.add_entry(InvoiceEntry(
                id_code="Test01",
                description="Some entry item",
                rate=5,
                quantity=1,
            ))
            invoice.shipping = 3
            print(invoice)
        
        You should see a printout of your invoice like this:
        
        .. code::
        
            Invoice for Foobar Inc. (test)
            |   ID   |     Description      |   Rate   | Quantity |  Amount  |
            +--------+----------------------+----------+----------+----------+
            | Test01 | Some entry item      |     5.00 |     1.00 |     5.00 |
            +--------+----------------------+----------+----------+----------+
                                                         Sub-total:     5.00
                                                          Shipping:     3.00
                                                          Discount:     3.00
                                                       +---------------------+
                                                             Total:     8.00
        
        To generate a PDF invoice using LaTeX, use
        
        .. code::
        
            invoice.pdf()
        
        Links
        -----
        
        * `Documentation <https://samueljsb.co.uk/InvoGen>`_
        * `GitHub <https://github.com/samueljsb/InvoGen>`_
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
