From a0bbd44209c8262cda1566e709f013b97372ce1c Mon Sep 17 00:00:00 2001 From: psykose <alice@ayaya.dev> Date: Tue, 7 Jun 2022 17:35:01 +0000 Subject: [PATCH] community/py3-keepass: remove stray file --- community/py3-keepass/asdasd | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 community/py3-keepass/asdasd diff --git a/community/py3-keepass/asdasd b/community/py3-keepass/asdasd deleted file mode 100644 index a9c480017d4f..000000000000 --- a/community/py3-keepass/asdasd +++ /dev/null @@ -1,32 +0,0 @@ -from setuptools import find_packages, setup - -with open("README.rst") as file: - README = file.read() - -version = {} -with open("pykeepass/version.py") as file: - exec(file.read(), version) - -setup( - name="pykeepass", - version=version["__version__"], - license="GPL3", - description="Python library to interact with keepass databases " - "(supports KDBX3 and KDBX4)", - long_description=README, - author="Philipp Schmitt", - author_email="philipp@schmitt.co", - url="https://github.com/libkeepass/pykeepass", - packages=find_packages(), - install_requires=[ - "python-dateutil", - # FIXME python2 - last version to support python2 - "construct==2.10.*", - "argon2_cffi", - "pycryptodomex>=3.*", - "lxml", - # FIXME python2 - "future", - ], - include_package_data=True, -) -- GitLab