bundlewrap-pass/setup.py

30 lines
1.0 KiB
Python
Raw Normal View History

2021-02-14 10:30:44 +00:00
from setuptools import setup
setup(
name="bundlewrap-pass",
version="1.0.0",
2021-02-14 10:30:44 +00:00
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",
2021-02-14 10:30:44 +00:00
"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",
],
)