forked from libkeepass/pykeepass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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,
long_description_content_type='text/x-rst',
author="Philipp Schmitt",
author_email="[email protected]",
url="https://github.com/libkeepass/pykeepass",
packages=find_packages(include=['pykeepass', 'pykeepass.*']),
install_requires=[
"python-dateutil",
"construct",
"argon2_cffi",
"pycryptodomex>=3.6.2",
"lxml",
],
include_package_data=True,
)