36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
from os import path
|
|
from setuptools import setup
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
with open(path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="bundlewrap-pass",
|
|
version="1.0.2",
|
|
description="Get passwordstore entries via bundlewrap",
|
|
author="Franziska Kunsmann",
|
|
author_email="pypi@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",
|
|
],
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown'
|
|
)
|