Initial commit

master
Dustin 2019-04-25 09:01:51 -05:00
commit 8ad267cc0e
3 changed files with 23 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
/.eggs/
/.venv*/
/build/
/dist/
*.egg-info/
__pycache__/
*.py[co]

16
setup.py Normal file
View File

@ -0,0 +1,16 @@
from setuptools import find_packages, setup
setup(
name='bwpass',
use_scm_version=True,
description='Pass-like interface for bw (the Bitwarden CLI)',
author='Dustin C. Hatch',
author_email='dustin@hatch.name',
url='',
license='GPL-3',
package_dir={'': 'src'},
py_modules=['bwpass'],
setup_requires=[
'setuptools_scm',
],
)

0
src/bwpass.py Normal file
View File