-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.04 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.04 KB
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
info = {}
with open(os.path.join(here, '__version__.py')) as f:
exec(f.read(), info)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name=info['__title__'],
version=info['__version__'],
description=info['__description__'],
long_description=long_description,
long_description_content_type='text/markdown',
author=info['__author__'],
author_email=info['__contact__'],
license=info['__license__'],
url=info['__url__'],
packages=find_packages(exclude="tests"),
#data_files=[('.',['__version__.py'])],
install_requires=[
'oauth2-client',
'staplus-client',
'cryptography',
'PyJWT',
'datetime',
'pyserial',
'paho-mqtt',
'uuid',
'PyQt5',
'psutil',
'qrcode',
'numpy',
'pillow'
],
keywords=['ogc', 'staplus', 'sensorthingsapi', 'IoT', 'rtl_433', 'rtl-433']
)