Browse Source

added MANIFEST.in and started configuring it

digital 8 years ago
parent
commit
c4381d5d80

+ 4 - 4
MANIFEST

@@ -1,10 +1,10 @@
 # file GENERATED by distutils, do NOT edit
 setup.py
 beewatch/__init__.py
-beewatch/./config/commands.yaml
-beewatch/./config/controllers.yaml
-beewatch/./config/logging.yaml
-beewatch/./config/style.css
 beewatch/gui/__init__.py
 beewatch/pinapi/__init__.py
 beewatch/server/__init__.py
+config/commands.yaml
+config/controllers.yaml
+config/logging.yaml
+config/style.css

+ 9 - 11
sample/get_example_config_path.py → MANIFEST.in

@@ -1,4 +1,3 @@
-#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of BeeWatch.
@@ -15,20 +14,19 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with BeeWatch.  If not, see <http://www.gnu.org/licenses/>.
-#
 
-"""
-This example demonstrates how to get the path to the example config folder. It contains example configurations and is located in the top level of the module.
-"""
+graft config
+graft sample
+
+
+
+
+
+
+
 
-# import the beewatch library
-import beewatch
 
-# get the config path and store it in `config_path`
-config_path = beewatch.get_example_config_path()
 
-# lets print the config path!
-print(config_path)
 
 
 

+ 0 - 11
beewatch/__init__.py

@@ -23,7 +23,6 @@ DOCSTRING
 import logging
 import logging.handlers
 import sys
-import os
 import time
 import traceback
 # Third party imports
@@ -39,16 +38,6 @@ log = logging.getLogger(__name__+"")
 _controllers = {}
 _commands = {}
 
-def get_example_config_path():
-    """
-    This function returns the absolute path to the example config directory. See also :doc:`/configure`
-    """
-    conf_path = os.path.abspath(__file__)
-    conf_path = conf_path.split(os.sep)
-    conf_path.pop()
-    conf_path.append("config")
-    conf_path = os.sep.join(conf_path)
-    return conf_path
 
 class Configure(object):
     """

+ 0 - 80
beewatch/config/commands.yaml

@@ -1,80 +0,0 @@
-commands:
-    eturn:
-        controller: engines_ctrl
-        function: turn
-    estate:
-        controller: engines_ctrl
-        function: set_engine_state
-    espeed:
-        controller: engines_ctrl
-        function: set_engine_speed
-    led_1_on:
-        controller: led_test_1
-        function: "on"
-    led_1_off:
-        controller: led_test_1
-        function: "off"
-    led_2_on:
-        controller: led_test_2
-        function: "on"
-    led_2_off:
-        controller: led_test_2
-        function: "off"
-    dout:
-        controller: debug_ctrl
-        function: output
-    din:
-        controller: debug_ctrl
-        function: input
-    draise:
-        controller: debug_ctrl
-        function: raise_exc
-    daraise:
-        controller: debug_ctrl
-        function: araise_exc
-    set_status_ok:
-        controller: status_led
-        function: green
-    set_status_warn:
-        controller: status_led
-        function: red
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-#

+ 0 - 46
beewatch/config/controllers.yaml

@@ -1,46 +0,0 @@
-controllers:
-    engines_ctrl:
-        target: digilib.pin.EnginesController
-        left: [4,17]
-        right: [27,22]
-    led_test_1:
-        target: digilib.pin.LED
-        pin: 5
-    led_test_2:
-        target: digilib.pin.LED
-        pin: 6
-    status_led:
-        target: digilib.pin.StatusLED
-        pin_red: 19
-        pin_green: 26
-    debug_ctrl:
-        target: digilib.pin.DebugPinController
-        pins: []
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-#

+ 0 - 86
beewatch/config/logging.yaml

@@ -1,86 +0,0 @@
-version: 1
-disable_existing_loggers: False
-formatters:
-    formatter_console:
-        style: "{"
-        format: "({filename}:{lineno:<3}) {name} {levelname} - {message}"
-        # datefmt: "%Y-%m-%d %H:%M:%S"
-    formatter_file:
-        style: "{"
-        format: "{asctime} ({filename}:{lineno}) {name} {levelname} - {message}"
-        datefmt: "%Y-%m-%d %H:%M:%S"
-handlers:
-    chandler:
-        class: logging.StreamHandler
-        level: DEBUG
-        formatter: formatter_console
-        stream: ext://sys.stdout
-    fh_server_chat:
-        class: logging.FileHandler
-        level: DEBUG
-        formatter: formatter_file
-        filename: log/chat_server.log
-    fh_chat:
-        class: logging.FileHandler
-        level: DEBUG
-        formatter: formatter_file
-        filename: log/chat_client.log
-loggers:
-    __main__:
-        level: DEBUG
-        handlers: [chandler]
-        propagate: no
-    beewatch:
-        level: DEBUG
-        handlers: [chandler]
-        propagate: no
-    digilib:
-        level: DEBUG
-        handlers: [chandler]
-        propagate: no
-    digilib.network:
-        handlers: [chandler]
-        propagate: no
-    digilib.network.server.chat:
-        handlers: [chandler]
-        propagate: no
-        # handlers: [chandler,fh_client_chat]
-    digilib.network.client.chat:
-        handlers: [chandler]
-        propagate: no
-        # handlers: [chandler,fh_client_chat]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-#

+ 0 - 78
beewatch/config/style.css

@@ -1,78 +0,0 @@
-frame {
-    /*border: 10px;*/
-    margin: 5px;
-    /*padding: 10px;*/
-}
-frame > box {
-    padding: 0 5px 0 5px;
-}
-frame > grid {
-    margin: 5px;
-}
-
-frame > grid {
-    /*background: cyan;*/
-}
-frame > grid > box > label {
-    /*background: red;*/
-}
-valuelabel {
-    /*background-color: yellow;*/
-    /*font-family: dejavu sans book;*/
-    /*font-family: lato light;*/
-    /*font-family: freemono;*/
-    font-family: dejavu serif;
-    /*font-weight: bolder;*/
-}
-#child_overview > frame > grid > label:nth-child(0n+1) {
-    /*background-color: red;*/
-    /*color: blue;*/
-    /*margin: 200px;*/
-    /*align: left;*/
-}
-
-#child_overview > frame > grid column {
-    background-color: yellow;
-
-    /*font-size: 5px;*/
-    /*background-color: red;*/
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/**/

BIN
dist/BeeWatch-0.0.tar.gz


+ 8 - 11
setup.py

@@ -16,13 +16,16 @@
 # You should have received a copy of the GNU General Public License
 # along with BeeWatch.  If not, see <http://www.gnu.org/licenses/>.
 
-from distutils.core import setup
-import os
+"""
+How to install BeeWatch
+=======================
+
+
 
+"""
 
-# config_files = []
-# for f in os.listdir('config'):
-#     config_files.append('./config/'+f)
+
+from distutils.core import setup
 
 setup_kwargs = {
     'name':'BeeWatch',
@@ -37,12 +40,6 @@ setup_kwargs = {
         'beewatch.pinapi',
         'beewatch.server',
     ],
-    # 'data_files': [
-    #     ('beewatch/config',config_files)
-    # ],
-    'package_data':{
-        'beewatch':['./config/*'],
-    },
 }
 
 setup(**setup_kwargs)