-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for release and upload to PyPI
- Loading branch information
1 parent
1cf57cb
commit 72c4a69
Showing
4 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pass.csv | ||
venv/ | ||
__pycache__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
from setuptools import setup | ||
import setuptools | ||
|
||
setup( | ||
name='pass2csv', | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="pass2csv", | ||
version="0.1.0", | ||
description='pass2csv', | ||
scripts=['pass2csv.py'], | ||
install_requires=["python-gnupg"] | ||
author="Rupus Reinefjord", | ||
author_email="[email protected]", | ||
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"], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Environment :: Console", | ||
"Intended Audience :: End Users/Desktop", | ||
"Topic :: Utilities", | ||
] | ||
) |