diff --git a/MANIFEST.in b/MANIFEST.in index b9ecb58..4ba39a8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,3 @@ -recursive-include dialog * -recursive-include vocab * recursive-include locale * -recursive-include res * -recursive-include ui * include *.json include *.txt \ No newline at end of file diff --git a/locale/en-us/skill.json b/locale/en-us/skill.json new file mode 100644 index 0000000..5a42452 --- /dev/null +++ b/locale/en-us/skill.json @@ -0,0 +1,16 @@ +{ + "skill_id": "ovos-skill-personal.openvoiceos", + "source": "https://github.com/OpenVoiceOS/skill-ovos-personal", + "name": "Assistant's Background", + "description": "Learn history and personality of the assistant. Ask about the 'birth' and parentage of the voice assistant and get a taste of the community who is fostering this open source artificial intelligence.", + "examples": [ + "When were you created?", + "What are you?", + "Where were you born?", + "Who made you?" + ], + "tags": [ + "personality", + "persona" + ] +} \ No newline at end of file diff --git a/setup.py b/setup.py index 9f2639f..6136478 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,6 @@ def get_version(): """ Find the version of the package""" - version = None version_file = os.path.join(BASEDIR, 'version.py') major, minor, build, alpha = (None, None, None, None) with open(version_file) as f: