diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d4ae719..521035b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,8 @@ jobs: steps: - name: actions/checkout uses: actions/checkout@v4 + with: + submodules: true - name: Setup Rye id: setup-rye uses: eifinger/setup-rye@v4 @@ -52,6 +54,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: true - name: Setup Rye id: setup-rye @@ -118,6 +122,7 @@ jobs: - name: actions/checkout uses: actions/checkout@v4 with: + submodules: true persist-credentials: false fetch-depth: 100 - name: Set Git user @@ -181,6 +186,7 @@ jobs: - name: actions/checkout uses: actions/checkout@v4 with: + submodules: true persist-credentials: false fetch-depth: 100 - name: current_version @@ -212,6 +218,8 @@ jobs: steps: - name: actions/checkout uses: actions/checkout@v4 + with: + submodules: true - name: Setup Rye id: setup-rye uses: eifinger/setup-rye@v4 diff --git a/config/config.yml b/config/config.yml index e69de29b..f6429da0 100644 --- a/config/config.yml +++ b/config/config.yml @@ -0,0 +1,101 @@ +full_name: Guillem Duran Ballester +email: guillem@fragile.tech +website: fragile.tech +project_name: Novelai +project_slug: "{{ cookiecutter.project_name.lower().replace(' ', '-') }}" +repo_name: "{{ cookiecutter.project_name|lower|replace(' ','-') }}" +repo_main_branch: main +repo_hosting: + - github.com + - gitlab.com + - other domain not listed +repo_hosting_domain: "{{ cookiecutter.repo_hosting if cookiecutter.repo_hosting != 'other domain not listed' else '' }}" +repo_username: FragileTech +repo_url: "https://{{ cookiecutter.repo_hosting_domain }}/{{ cookiecutter.repo_username }}/{{ cookiecutter.repo_name }}" +package_name: "{{ cookiecutter.project_name|lower|replace(' ','_')|replace('-','_') }}" +distribution_name: "{{ cookiecutter.package_name|replace('_','-') }}" +module_name: core +function_name: compute +project_short_description: Automatic generation of book series with LLMs +release_date: today +year_from: "{% now 'utc', '%Y' %}" +year_to: "{% now 'utc', '%Y' %}" +target_python_version: + - 3.10 + - 3.8 + - 3.9 + - 3.11 + - 3.12 +lock_file_support: false +version: 0.0.0 +license: + - MIT license + - BSD 2-Clause License + - BSD 3-Clause License + - ISC license + - Apache Software License 2.0 + - GNU Lesser General Public License v3 or later (LGPLv3+) + - GNU Lesser General Public License v3 (LGPLv3) + - GNU Lesser General Public License v2.1 or later (LGPLv2+) + - GNU Lesser General Public License v2.1 (LGPLv2) + - no +pypi_badge: + - yes + - no +pypi_disable_upload: + - no + - yes +pre_commit: + - yes + - no +formatter_quote_style: + - double + - single +line_length: 99 +docstring_code_line_length: 99 +command_line_interface: + - click + - plain + - argparse + - no +command_line_interface_bin_name: "{{ cookiecutter.distribution_name }}" +codecov: + - yes + - no +sphinx_docs: + - yes + - no +sphinx_docs_hosting: "https://{{ cookiecutter.repo_name|replace('.', '') }}.readthedocs.io/" +github_actions: + - yes + - no +github_actions_osx: + - yes + - no +github_actions_windows: + - yes + - no +__pypi_badge_options: + yes: true + no: false +__pypi_disable_upload_options: + yes: true + no: false +__codecov_options: + yes: true + no: false +__sphinx_docs_options: + yes: true + no: false +__github_actions_options: + yes: true + no: false +__github_actions_osx_options: + yes: true + no: false +__github_actions_windows_options: + yes: true + no: false +_extensions: + - pylibrary.JsonQuoteExtension + - jinja2_time.TimeExtension diff --git a/mloq-template b/mloq-template index faff5db6..38dcee18 160000 --- a/mloq-template +++ b/mloq-template @@ -1 +1 @@ -Subproject commit faff5db63b7b306158a23047b6e5b9ce977f3194 +Subproject commit 38dcee18624b31b220db28c177b3b51caad5f206 diff --git a/templates/mlops b/templates/mlops index 063686ac..52c1a6d9 160000 --- a/templates/mlops +++ b/templates/mlops @@ -1 +1 @@ -Subproject commit 063686acac8ba07964df2eb6ef8cc2e50133732a +Subproject commit 52c1a6d9c3e07d322e31ad07e4e66bb5ab21fcc5