17 lines
376 B
Python
17 lines
376 B
Python
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',
|
|
],
|
|
)
|