29 lines
1 KiB
Python
29 lines
1 KiB
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="bundlewrap-pass",
|
|
version="0.0.1",
|
|
description="Get passwordstore entries via bundlewrap",
|
|
author="Franziska Kunsmann",
|
|
author_email="hi@kunsmann.eu",
|
|
license="GPLv3",
|
|
py_modules=['bwpass'],
|
|
keywords=["configuration", "config", "management"],
|
|
classifiers=[
|
|
# "Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: System Administrators",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Installation/Setup",
|
|
"Topic :: System :: Systems Administration",
|
|
],
|
|
install_requires=[
|
|
"bundlewrap >= 4.0.0",
|
|
],
|
|
)
|