bundlewrap-pass/setup.py

37 lines
1.3 KiB
Python
Raw Permalink Normal View History

2021-07-02 15:00:22 +00:00
from os import path
2021-02-14 10:30:44 +00:00
from setuptools import setup
2021-07-02 15:00:22 +00:00
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
long_description = f.read()
2021-02-14 10:30:44 +00:00
setup(
name="bundlewrap-pass",
2021-07-03 17:45:29 +00:00
version="1.0.2",
2021-02-14 10:30:44 +00:00
description="Get passwordstore entries via bundlewrap",
author="Franziska Kunsmann",
2021-07-03 17:45:29 +00:00
author_email="pypi@kunsmann.eu",
2021-02-14 10:30:44 +00:00
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",
],
2021-07-02 15:00:22 +00:00
long_description=long_description,
long_description_content_type='text/markdown'
2021-02-14 10:30:44 +00:00
)