-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(template): adding meson-python as a build-system option (#139)
* Activate option in TUI to meson-python. * Adding meson-python as a build-system: * Creating a mesonpy-pyproject.toml * Editing post_gen_project.py * Adding mesonpy to build-system.sh * Adding meson.build as additional configuration file * Editing cookicutter.json * Adding meson-python in conda/dev.yaml
- Loading branch information
1 parent
791ca16
commit c05dc79
Showing
15 changed files
with
195 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ jobs: | |
- coc.sh | ||
- governance.sh | ||
- roadmap.sh | ||
- build-system.sh | ||
|
||
defaults: | ||
run: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,8 @@ | |
], | ||
"build_system": [ | ||
"poetry", | ||
"flit" | ||
"flit", | ||
"mesonpy" | ||
], | ||
"use_bandit": "yes", | ||
"use_black": "no", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,7 @@ build_system: | |
choices: | ||
- poetry | ||
- flit | ||
- mesonpy | ||
enabled: false | ||
|
||
command_line_interface: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/scicookie/{{cookiecutter.project_slug}}/build-system/meson.build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
project( | ||
'{{ cookiecutter.project_slug }}', | ||
'cpp', | ||
version: '{{ cookiecutter.project_version }}', # semantic-release | ||
license: '{{ cookiecutter.project_license }}', | ||
meson_version: '>= 1.1.0', | ||
) | ||
name = '{{ cookiecutter.project_slug }}' | ||
|
||
py_mod = import('python') | ||
py = py_mod.find_installation(pure: false) | ||
|
||
py.extension_module( | ||
'{{ cookiecutter.package_slug }}.py', | ||
install: true, | ||
) |
123 changes: 123 additions & 0 deletions
123
src/scicookie/{{cookiecutter.project_slug}}/build-system/mesonpy-pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
[build-system] | ||
build-backend = "mesonpy" | ||
requires = ["meson", "meson-python"] | ||
|
||
|
||
[project] | ||
name = "{{ cookiecutter.project_slug }}" | ||
description = "{{ cookiecutter.project_short_description }}" | ||
authors = [ | ||
{ name = "{{ cookiecutter.author_full_name }}", email = "{{ cookiecutter.author_email }}" }, | ||
] | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 1 - Planning", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
{%- if cookiecutter.project_license == "MIT" %} | ||
"License :: OSI Approved :: MIT License", | ||
{%- elif cookiecutter.project_license == "BSD 3 Clause" %} | ||
"License :: OSI Approved :: BSD License", | ||
{%- elif cookiecutter.project_license == "Apache Software License 2.0" %} | ||
"License :: OSI Approved :: Apache Software License", | ||
{%- elif cookiecutter.project_license == "GNU General Public License v3" %} | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
{%- endif %} | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering", | ||
"Typing :: Typed", | ||
] | ||
dynamic = ["version"] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
{# keep this line here #} | ||
{%- if cookiecutter.use_pytest == "yes" -%} | ||
"pytest>=7.3.2", | ||
{% if cookiecutter.use_coverage == "yes" -%} | ||
"pytest-cov>=4.1.0", | ||
{% endif %} | ||
{%- endif -%}{#- end of use_pytest -#} | ||
{%- if cookiecutter.use_hypothesis == "yes" -%} | ||
"hypothesis>=6.0", | ||
{% endif %} | ||
{%- if cookiecutter.use_coverage == "yes" -%} | ||
"coverage>=7.2.7", | ||
{% endif %} | ||
{%- if cookiecutter.use_blue == "yes" -%} | ||
"blue>=0.9.1", | ||
{% endif %} | ||
{%- if cookiecutter.use_black == "yes" -%} | ||
"black>=23.3.0", | ||
{% endif %} | ||
{%- if cookiecutter.use_isort == "yes" -%} | ||
"isort>=5.12.0", | ||
{% endif %} | ||
{%- if cookiecutter.use_pre_commit -%} | ||
"pre-commit>=3.3.2", | ||
{% endif %} | ||
{%- if cookiecutter.use_flake8 == "yes" -%} | ||
"flake8>=4.0.1, <7", | ||
{% endif %} | ||
{%- if cookiecutter.use_ruff == "yes" -%} | ||
"ruff>=0.0.272", | ||
{% endif %} | ||
{%- if cookiecutter.use_mypy == "yes" -%} | ||
"mypy>=1.3.0", | ||
{% endif %} | ||
{%- if cookiecutter.use_bandit == "yes" -%} | ||
"bandit>=1.7.5", | ||
{% endif %} | ||
{%- if cookiecutter.use_pydocstyle == "yes" -%} | ||
"pydocstyle>=6.3.0", | ||
{% endif %} | ||
{%- if cookiecutter.use_vulture == "yes" -%} | ||
"vulture>=2.7", | ||
{% endif %} | ||
{%- if cookiecutter.use_mccabe == "yes" -%} | ||
"mccabe>=0.6.1", | ||
{% endif %} | ||
{%- if cookiecutter.use_containers in ['Docker', 'Podman'] -%} | ||
# if you want to use docker-compose from your system, remove compose-go here | ||
"compose-go>=2.18.1", | ||
{% endif %} | ||
"ipython<8", | ||
"ipykernel>=6.0.0", | ||
{%- if cookiecutter.documentation_engine == 'mkdocs' -%} | ||
"Jinja2>=3.1.2", | ||
"mkdocs>=1.4.3", | ||
"mkdocs-exclude>=1.0.2", | ||
"mkdocs-jupyter>=0.24.1", | ||
"mkdocs-literate-nav>=0.6.0", | ||
"mkdocs-macros-plugin>=0.7.0, <1", | ||
"mkdocs-material>=9.1.15", | ||
"mkdocstrings>=0.21.2", | ||
"mkdocstrings-python>=1.1.2", | ||
{% elif cookiecutter.documentation_engine == 'sphinx' -%} | ||
"Sphinx>=6.2.1", | ||
"sphinx-rtd-theme>=1.2.2", | ||
"importlib-metadata>=6.5.1", | ||
"myst-parser>=0.19.2", | ||
"nbsphinx>=0.9.2", | ||
"pandoc>=2.3", | ||
{% elif cookiecutter.documentation_engine == 'jupyter-book' -%} | ||
"jupyter-book>=0.15.1", | ||
"myst-parser>=0.18.1", | ||
{% endif %} | ||
] | ||
|
||
[project.urls] | ||
Homepage = "{{ cookiecutter.project_url }}" | ||
"Bug Tracker" = "{{ cookiecutter.project_url }}/issues" | ||
Discussions = "{{ cookiecutter.project_url }}/discussions" | ||
Changelog = "{{ cookiecutter.project_url }}/releases" | ||
|
||
{% include "build-system/base-pyproject.toml" %} | ||
{#- keep this line at the end of the file -#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters