Make homework 1
This commit is contained in:
parent
2660e0879b
commit
29f743a2f4
21
scada_system/LICENSE
Normal file
21
scada_system/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 Vasilev Ilya
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
17
scada_system/README.md
Normal file
17
scada_system/README.md
Normal file
@ -0,0 +1,17 @@
|
||||
## Installation
|
||||
|
||||
1. Install Python
|
||||
|
||||
2. Create and activate your virtual environment following the [instructions](https://docs.python.org/3/tutorial/venv.html)
|
||||
|
||||
3. Install the 'requirements.txt' dependencies using the commands:
|
||||
'''
|
||||
cd ./scada_system
|
||||
pip install -r requirements.txt
|
||||
'''
|
||||
|
||||
4. To generate documentation in HTML format, you need to run the following commands:
|
||||
'''
|
||||
cd ./docs
|
||||
make html
|
||||
'''
|
9
scada_system/controls/__init__.py
Normal file
9
scada_system/controls/__init__.py
Normal file
@ -0,0 +1,9 @@
|
||||
'''
|
||||
Supervisory control and data acquisition (SCADA)
|
||||
|
||||
It is a control system architecture comprising computers,
|
||||
networked data communications and graphical user interfaces for
|
||||
high-level supervision of machines and processes. It also covers
|
||||
sensors and other devices, such as programmable logic controllers,
|
||||
which interface with process plant or machinery.
|
||||
'''
|
0
scada_system/controls/setup.py
Normal file
0
scada_system/controls/setup.py
Normal file
20
scada_system/docs/Makefile
Normal file
20
scada_system/docs/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# Minimal makefile for Sphinx documentation
|
||||
#
|
||||
|
||||
# You can set these variables from the command line, and also
|
||||
# from the environment for the first two.
|
||||
SPHINXOPTS ?=
|
||||
SPHINXBUILD ?= sphinx-build
|
||||
SOURCEDIR = source
|
||||
BUILDDIR = build
|
||||
|
||||
# Put it first so that "make" without argument is like "make help".
|
||||
help:
|
||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
|
||||
.PHONY: help Makefile
|
||||
|
||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
%: Makefile
|
||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
35
scada_system/docs/make.bat
Normal file
35
scada_system/docs/make.bat
Normal file
@ -0,0 +1,35 @@
|
||||
@ECHO OFF
|
||||
|
||||
pushd %~dp0
|
||||
|
||||
REM Command file for Sphinx documentation
|
||||
|
||||
if "%SPHINXBUILD%" == "" (
|
||||
set SPHINXBUILD=sphinx-build
|
||||
)
|
||||
set SOURCEDIR=source
|
||||
set BUILDDIR=build
|
||||
|
||||
%SPHINXBUILD% >NUL 2>NUL
|
||||
if errorlevel 9009 (
|
||||
echo.
|
||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
||||
echo.may add the Sphinx directory to PATH.
|
||||
echo.
|
||||
echo.If you don't have Sphinx installed, grab it from
|
||||
echo.https://www.sphinx-doc.org/
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
if "%1" == "" goto help
|
||||
|
||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
||||
goto end
|
||||
|
||||
:help
|
||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
||||
|
||||
:end
|
||||
popd
|
28
scada_system/docs/source/conf.py
Normal file
28
scada_system/docs/source/conf.py
Normal file
@ -0,0 +1,28 @@
|
||||
# Configuration file for the Sphinx documentation builder.
|
||||
#
|
||||
# For the full list of built-in configuration values, see the documentation:
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
||||
|
||||
# -- Project information -----------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||
|
||||
project = 'SCADA'
|
||||
copyright = '2023, ilyavasilev'
|
||||
author = 'ilyavasilev'
|
||||
release = '0.0.1'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
extensions = []
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = []
|
||||
|
||||
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
||||
html_theme = 'alabaster'
|
||||
html_static_path = ['_static']
|
20
scada_system/docs/source/index.rst
Normal file
20
scada_system/docs/source/index.rst
Normal file
@ -0,0 +1,20 @@
|
||||
.. SCADA documentation master file, created by
|
||||
sphinx-quickstart on Mon Sep 25 22:24:00 2023.
|
||||
You can adapt this file completely to your liking, but it should at least
|
||||
contain the root `toctree` directive.
|
||||
|
||||
Welcome to SCADA's documentation!
|
||||
=================================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
:caption: Contents:
|
||||
|
||||
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
4
scada_system/pyproject.toml
Normal file
4
scada_system/pyproject.toml
Normal file
@ -0,0 +1,4 @@
|
||||
[project]
|
||||
name = "SCADA"
|
||||
description = "Cистема управления для сбора, анализа и визуализации данных"
|
||||
version = "0.0.1"
|
36
scada_system/requirements.txt
Normal file
36
scada_system/requirements.txt
Normal file
@ -0,0 +1,36 @@
|
||||
alabaster==0.7.13
|
||||
astroid==2.15.7
|
||||
Babel==2.12.1
|
||||
certifi==2023.7.22
|
||||
charset-normalizer==3.2.0
|
||||
dill==0.3.7
|
||||
docutils==0.20.1
|
||||
idna==3.4
|
||||
imagesize==1.4.1
|
||||
importlib-metadata==6.8.0
|
||||
isort==5.12.0
|
||||
Jinja2==3.1.2
|
||||
lazy-object-proxy==1.9.0
|
||||
MarkupSafe==2.1.3
|
||||
mccabe==0.7.0
|
||||
mypy==1.5.1
|
||||
mypy-extensions==1.0.0
|
||||
packaging==23.1
|
||||
platformdirs==3.10.0
|
||||
Pygments==2.16.1
|
||||
pylint==2.17.6
|
||||
requests==2.31.0
|
||||
snowballstemmer==2.2.0
|
||||
Sphinx==7.2.6
|
||||
sphinxcontrib-applehelp==1.0.7
|
||||
sphinxcontrib-devhelp==1.0.5
|
||||
sphinxcontrib-htmlhelp==2.0.4
|
||||
sphinxcontrib-jsmath==1.0.1
|
||||
sphinxcontrib-qthelp==1.0.6
|
||||
sphinxcontrib-serializinghtml==1.1.9
|
||||
tomli==2.0.1
|
||||
tomlkit==0.12.1
|
||||
typing_extensions==4.8.0
|
||||
urllib3==2.0.5
|
||||
wrapt==1.15.0
|
||||
zipp==3.17.0
|
Loading…
Reference in New Issue
Block a user