-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.01 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
"""A setuptools based setup module."""
from os import path
from setuptools import setup, find_packages
from io import open
here = path.abspath(path.dirname(__file__))
setup(
name='hass-wh-triggers',
version='0.0.7',
description='HASS-WH-Triggers',
long_description='https://github.com/danielperna84/hass-wh-triggers',
url='https://github.com/danielperna84/hass-wh-triggers',
author='Daniel Perna',
author_email='[email protected]',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3.7',
],
keywords='Home Assistant FIDO2 WebAuthn TOTP',
packages=find_packages(),
install_requires=[
"cbor2==4.1.2",
"cryptography",
"Flask",
"Flask-Login",
"Flask-SQLAlchemy",
"Flask-WTF",
"future",
"pyotp",
"pyOpenSSL",
"setuptools",
"setuptools-scm",
"six",
"SQLAlchemy",
"wheel",
"WTForms",
],
include_package_data=True,
data_files=[]
)