-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 688 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='decrypt-ha-backup',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
version='2024.01.27.1',
description='Decryption utility for Home Assistant backups',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["cryptography"],
author="Stephen Beechen",
author_email="stephen@beechens.com",
python_requires=">=3.10",
)