bean spiller

This commit is contained in:
Q
2023-01-22 13:31:46 +02:00
parent 115f631743
commit cd37185d2a
6 changed files with 251 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
from distutils.core import setup
import os
def version_reader(path):
for line in open(path, "rt").read(1024).split("\n"):
if line.startswith("__version__"):
return line.split("=")[1].strip().replace('"', "")
version = version_reader(os.path.join("spiller", "__init__.py"))
setup(
name="spiller",
packages=["spiller"],
version=version,
description="Very simple password storage, that encrypts with GPG cmdline tool.",
author="Ville Rantanen",
author_email="ville.q.rantanen@gmail.com",
entry_points={
"console_scripts": [
"spill = spiller.spiller:main",
]
},
)