-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 869 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 869 Bytes
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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='miauth',
version='0.9.6',
url='https://github.com/dnandha/miauth',
license='GNU AGPL v3',
author='Daljeet Nandha',
author_email='dalj337@gmail.com',
description='Authenticate and interact with Xiaomi devices over BLE',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(include=['miauth', 'miauth.*']),
entry_points={
'console_scripts': ['miauth=miauth.cli:main']
},
install_requires=[
'cryptography'
],
extras_require={
'cli': [
'bluepy==1.3.0'
]
},
python_requires=">=3.6",
)