Skip to content
Snippets Groups Projects
Unverified Commit a0bbd442 authored by alice's avatar alice
Browse files

community/py3-keepass: remove stray file

parent 04df3dc5
No related branches found
No related tags found
1 merge request!39304[3.16] main/expat: security upgrade to 2.4.9
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,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment