Skip to content

Commit fd93e69

Browse files
add setup.py
1 parent 4a20b5c commit fd93e69

File tree

7 files changed

+16
-4
lines changed

7 files changed

+16
-4
lines changed

‎alexa_like_whisper/__init__.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from .main import AlexaLikeWhisper
2+
__all__ = ['AlexaLikeWhisper']
File renamed without changes.
File renamed without changes.

‎scripts/alexa_like_whisper.py‎ renamed to ‎alexa_like_whisper/main.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import scripts.strategy as strategy
1+
from . import strategy
22
import time
33

44
class AlexaLikeWhisper():
File renamed without changes.

‎scripts/strategy.py‎ renamed to ‎alexa_like_whisper/strategy.py‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import scripts.hotword_detection as hotword_detection
2-
import scripts.input as input
3-
import scripts.recognition as recognition
1+
from . import hotword_detection
2+
from . import input
3+
from . import recognition
44

55
import struct
66
import numpy as np

‎setup.py‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='alexa_like_whisper',
5+
version="0.0.1",
6+
description="sample of minimum package",
7+
author='Tech Life Hacking',
8+
packages=find_packages(),
9+
license='MIT'
10+
)

0 commit comments

Comments
 (0)