Initial commit
This commit is contained in:
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
/.eggs/
|
||||||
|
/.venv*/
|
||||||
|
/build/
|
||||||
|
/dist/
|
||||||
|
*.egg-info/
|
||||||
|
__pycache__/
|
||||||
|
*.py[co]
|
||||||
16
setup.py
Normal file
16
setup.py
Normal 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
0
src/bwpass.py
Normal file
Reference in New Issue
Block a user