-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
40 lines (37 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = "stao"
import setuptools
setuptools.setup(
name="blinker-py",
version="0.3.0",
author="stao",
author_email="[email protected]",
description="Blinker library in python",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/blinker-iot/blinker-py",
project_urls={
"Bug Tracker": "https://github.com/blinker-iot/blinker-py/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
install_requires=[
'aiohttp~=3.7.4',
'certifi~=2021.10.8',
'loguru~=0.5.3',
'paho-mqtt~=1.6.1',
'Rx~=3.2.0',
"websockets~=10.2",
'apscheduler~=3.9.1',
'getmac~=0.8.3',
'zeroconf~=0.38.4',
'requests~=2.27.1',
],
)