Metadata-Version: 2.1
Name: mypassman
Version: 0.0.4
Summary: A super simple password management app
Home-page: https://github.com/seanpierce/passman
Author: Sean Pierce
Author-email: sumler.sean@gmail.com
License: UNKNOWN
Description: # PassMan
        <img src="assets/Release-1.3.0-blue.svg">
        
        PassMan is a super simple, Python-based **pass**word **man**agement console application. Data is managed using Peewee ORM and stored in a Sqlite3 database.
        
        <img src="https://user-images.githubusercontent.com/15679739/41821414-35dbb9a2-7795-11e8-97f3-be07107a304f.gif">
        
        ### Dependencies
        * Python3
          * Check version using `$ python --version`
          * <a href="https://www.python.org/downloads/release/python-365/">Installing or upgrading to Python3</a>
        * <a href="http://docs.peewee-orm.com/en/latest/">PeeWee</a>
        * <a href="https://pypi.org/project/bcrypt/">Bcrypt</a>
        * <a href="https://pypi.org/project/colorama/">Colorama</a>
        * <a href="https://pypi.org/project/termcolor/">Termcolor</a>
        * <a href="https://pypi.org/project/pyperclip/">Pyperclip</a>
        
        ### Installation and Usage
        ```shell
        $ # via pip
        $ pip3 install passwordmanager
        $ # via source
        $ git clone https://github.com/seanpierce/passman
        $ # path/to/your/python path/to/passman
        $ python3 passman
        ```
        
        ### Notes:
        It's helpful to alias "python" and "pip" to point towards the "python3" and "pip3" commands respectively.
        ```shell
        $ echo "alias python=python3" > ~/.bashrc
        $ echo "alias pip=pip3" > ~/.bashrc
        $ # for zshell users, replace ~/.bachrc with ~/.zshrc
        ```
        
        Currently, there is an outstanding <a href="https://github.com/seanpierce/passman/issues/4">issue</a> to allow automatic global aliasing of the passman command on installation. For now, you can manually alias 'passman'.
        
        ```shell
        # note that the python versions in this example might not be the version you're using, adjust to your current version accordingly
        
        # the following works for most MacOS users:
        $ PATH_TO_PASSMAN = "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/passman/"
        $ echo "alias passman='python $PATH_TO_PASSMAN'" > ~/.bashrc
        
        # the following works for most Windows 10 users:
        $ PATH_TO_PASSMAN = "/c/Program Files (x86)/Python36-32/Lib/site-packages/passman/"
        $ echo "alias passman='python $PATH_TO_PASSMAN'" > /c/users/[username].bashrc
        ```
        
        \* This package was uploaded using <a href="https://anweshadas.in/how-to-upload-a-package-in-pypi-using-twine/">twine</a>:
        ```shell
        $ python3 setup.py sdist
        $ twine upload dist/*
        ```
        
        
        **TODO:**
        * Update "entry_points" prop in setup.py to allow for global usage with single 'passman' commad
        * Separate main menu functions into own module
        
        **Author:**  
        Sean Pierce Sumler
        
        **License:**  
        MIT, use at your own risk
        
        For questions and comments please <a href="https://github.com/seanpierce/passman/issues/new">raise an issue</a>. <a href="https://github.com/seanpierce/passman/compare">Pull requests</a> always welcome, too. Thanks!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
