pass2bw/setup.py

26 lines
779 B
Python
Raw Normal View History

2020-06-08 02:16:58 -04:00
import setuptools
2018-12-27 12:12:06 -05:00
2020-06-08 02:16:58 -04:00
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pass2csv",
version="0.1.2",
2020-06-08 02:16:58 -04:00
author="Rupus Reinefjord",
author_email="rupus@reinefjord.net",
description='Export pass(1), "the standard unix password manager", to CSV',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["python-gnupg"],
scripts=["pass2csv"],
2020-06-12 13:17:28 -04:00
url="https://github.com/reinefjord/pass2csv",
2020-06-08 02:16:58 -04:00
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
]
2018-12-27 12:12:06 -05:00
)