diff --git a/API.md b/API.md index d8a0d05..59e726f 100644 --- a/API.md +++ b/API.md @@ -26,7 +26,7 @@ In a new directory, run: After the skill has been created with default options, a file called `.projenrc.json` will be generated. This file contains all of the options used to create the skill, and can be edited to change the skill's configuration. For a full list of supported options, see [`API.md`](API.md). -Most commonly, you will want to change the `name`, `author`, `authorAddress`, `authorHandle`, and `repositoryUrl` options. If you prefer to have an explicitly named directory for your source code instead of the default `src`, then `packageDir` should also be set. The `type` option should be left alone, as it is used to tell projen which project template to use. +Most commonly, you will want to change the `name`, `author`, `authorAddress`, `authorHandle`, `skillClass`, and `repositoryUrl` options. If you prefer to have an explicitly named directory for your source code instead of the default `src`, then `packageDir` should also be set. The `type` option should be left alone, as it is used to tell projen which project template to use. Example: @@ -38,7 +38,8 @@ Example: "authorAddress": "mike@graywind.org", "authorHandle": "mikejgray", "repositoryUrl": "https://github.com/mikejgray/test-skill", - "packageDir": "test_skill" + "packageDir": "test_skill", + "skillClass": "TestSkill" } ``` diff --git a/test/__snapshots__/OVOSSkillProject.test.ts.snap b/test/__snapshots__/OVOSSkillProject.test.ts.snap index fb20679..580b7e0 100644 --- a/test/__snapshots__/OVOSSkillProject.test.ts.snap +++ b/test/__snapshots__/OVOSSkillProject.test.ts.snap @@ -17,7 +17,6 @@ Object { /.projen/deps.json linguist-generated /.projen/files.json linguist-generated /.projen/tasks.json linguist-generated -/requirements.txt linguist-generated /setup.py linguist-generated", ".github/workflows/license_tests.yml": "# ~~ Generated by projen. To modify, edit .projenrc.json and run \\"npx projen\\". @@ -288,7 +287,6 @@ dmypy.json .pytype/ cython_debug/ !/setup.py -!/requirements.txt !/.github/workflows/license_tests.yml !/.github/workflows/propose_release.yml !/.github/workflows/publish_alpha.yml @@ -311,7 +309,6 @@ cython_debug/ ".projen/deps.json", ".projen/files.json", ".projen/tasks.json", - "requirements.txt", "setup.py", ], }, @@ -446,9 +443,6 @@ TODO: ovos skill ", - "requirements.txt": "ovos-utils -ovos-bus-client -ovos-workshop", "setup.py": "#!/usr/bin/env python3 from setuptools import setup from os import walk, path