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",
|
2020-08-08 12:52:07 -04:00
|
|
|
version="0.1.3",
|
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",
|
2020-08-08 12:50:14 -04:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8"
|
|
|
|
],
|
|
|
|
python_requires='>=3.6'
|
2018-12-27 12:12:06 -05:00
|
|
|
)
|