Metadata-Version: 2.1
Name: lpm
Version: 0.0.6
Summary: Command line application for practicing coding speed.
Home-page: https://gitlab.cas.mcmaster.ca/modyj/3xa3.git
Author: Jay Mody, Jessica Lim, Maanav Dalal
Author-email: jaykmody@gmail.com, jessicalim813@gmail.com, maanavdalal@gmail.com
License: https://www.gnu.org/licenses/agpl-3.0.html
Description: # Lines Per Minute
        
        Team Name: Lines Per Minute (lpm)
        
        Team Members: Jay Mody, Jessica Lim, Maanav Dalal
        
        This project is a reimplementation of [github.com/cslarsen/wpm](https://github.com/cslarsen/wpm).
        
        ## Install
        ```
        pip install lpm
        ```
        
        ## Run
        ```
        lpm
        ```
        
        ## Dev Setup
        
        Install dev dependencies:
        ```
        pip install -r requirements-dev.txt
        ```
        
        Run tests:
        ```
        pytest tests
        ```
        
        Code formatting:
        ```
        black setup.py lpm/*.py
        ```
        
        Code linting:
        ```
        pylint setup.py lpm/*.py
        ```
        
        Install editable package:
        ```
        pip install -e .
        ```
        
        Create documentation:
        ```
        cd docs
        make clean && make html && make latexpdf
        ```
        
        Upload to [PyPI](https://pypi.org/project/lpm/0.0.1/):
        1. Update version in `lpm/__init__.py`
        2. Run code linting and formatting
        3. Update `requirements-dev.txt` if needed
        4. Update `setup.py` if needed
        5. Run tests to assure everything is working
        6. `python -m build`
        7. `python -m twine upload dist/*`
        
        
        The folders and files for this project are as follows:
        `lpm`: Contains source code for project.
        `lpm/__main__.py`: Entry point for lpm.
        `tests`: Folder containing tests.
        `setup.py`: Python package setup.
        
Keywords: lpm,typing,typist,code,keyboard
Platform: unix
Platform: linux
Platform: osx
Platform: cygwin
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
