Metadata-Version: 1.1
Name: primer
Version: 1.1
Summary: A primer for prime numbers
Home-page: https://github.com/cbcunc/primer
Author: Chris Calloway
Author-email: cbc@chriscalloway.org
License: GPL2
Description: A primer for prime numbers
        ==========================
        
        To use as a package:
        
            >>> import primer
            >>> primer.primes(10)
            [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]
            >>> primer.prime(10)
            29
            >>> pg = primer.pgf()
            >>> pg.next()
            2
            >>> pg.next()
            3
            >>> pg.next()
            5
            >>>
        
        To use as a script:
        
            $ python -m primer [-h] [-t] [N]
        
            Display the first N primes.
        
            positional arguments:
              N           Number of primes to generate (default: 100)
        
            optional arguments:
              -h, --help  show this help message and exit
              -t          Display elapsed time (default: False)
        
        Version 1.1          2015-03-25
        -------------------------------
        - Fix Add primorial function.
        
        Version 1.0.2        2015-03-25
        -------------------------------
        - Fix keywords.
        
        Version 1.0.1        2015-03-25
        -------------------------------
        - Release testing.
        
        Version 1.0          2015-03-23
        -------------------------------
        - Initial release.
        
Keywords: Prime number primes primorial
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Topic :: Scientific/Engineering :: Mathematics
