-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.47 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
import io
import re
from setuptools import find_packages
from setuptools import setup
with io.open("src/upparat/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
setup(
name="upparat",
version=version,
description="Update Service for AWS IoT Core",
url="https://github.com/caruhome/upparat",
author="Livio Bieri / Reto Aebersold",
long_description_content_type="text/markdown",
long_description="The Upparat is a secure and robust service that runs on your IoT device to download and install files such as firmware updates. [Learn more](https://github.com/caruhome/upparat).", # noqa
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Operating System",
],
python_requires=">=3.6",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
entry_points={"console_scripts": ["upparat=upparat.cli:main"]},
install_requires=["paho-mqtt>=1.4.0", "backoff>=1.8.1", "pysm>=0.3.7"],
extras_require={
"dev": ["pytest", "pytest-mock", "boto3", "ipdb", "coverage"],
"sentry": ["sentry-sdk"],
},
)