This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
88 lines (70 loc) · 2.05 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# -*- coding: utf8 -*-
import sys
from setuptools import find_packages, setup
import edgespot
#region File Attributes
__author__ = "Orlin Dimitrov"
"""Author of the file."""
__copyright__ = ""
"""Copyrighted"""
__credits__ = []
"""Credits"""
__license__ = ""
"""License
@see """
__version__ = "1.0.0"
"""Version of the file."""
__maintainer__ = ["Orlin Dimitrov", "Martin Maslyankov", "Nikola Atanasov"]
"""Name of the maintainer."""
__email__ = ""
"""E-mail of the author."""
__class_name__ = ""
"""Class name."""
#endregion
def long_description():
"""Long description reader.
Returns:
str: Description content.
"""
with open('README.md', encoding='utf-8') as f:
return f.read()
install_requires = ["certifi==2022.12.7", "charset-normalizer==3.1.0",
"hassapi==0.1.1", "idna==3.4",
"paho-mqtt==1.6.1", "pymodbus==3.2.2",
"PyYAML==6.0", "requests==2.28.2",
"urllib3==1.26.15"],
setup(
name="edgespot",
packages=find_packages(include=["edgespot", 'edgespot.*']),
entry_points={
'console_scripts': [
'edgespot = edgespot.__main__:main'
]
},
version=__version__,
description="Edgespot we-ctrl.io edge cloud software.",
long_description=long_description(),
long_description_content_type='text/markdown',
author=__author__,
license=__license__,
author_email=__email__,
python_requires='>=3.7',
install_requires=install_requires,
setup_requires=[],
tests_require=[],
test_suite="",
project_urls={
'GitHub': 'https://github.com/wectrl-io/edgespot',
},
classifiers=[
'Development Status :: 1 - Debug',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Home and Industrial automation'
],
# package_data={'package.sub_1.sub_2': ['*.ext']}
)