Initial commit
commit
8ad267cc0e
|
@ -0,0 +1,7 @@
|
||||||
|
/.eggs/
|
||||||
|
/.venv*/
|
||||||
|
/build/
|
||||||
|
/dist/
|
||||||
|
*.egg-info/
|
||||||
|
__pycache__/
|
||||||
|
*.py[co]
|
|
@ -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',
|
||||||
|
],
|
||||||
|
)
|
Reference in New Issue