├── .github └── workflows │ └── wheels.yml ├── .gitignore ├── LICENSE ├── README.md ├── app └── main.f90 ├── c_wrapper └── fexample_c.f90 ├── fpm.toml ├── python ├── README.md ├── build-requirements.txt ├── fexample │ ├── __init__.py │ ├── circle │ │ ├── __init__.py │ │ └── circle_props.py │ └── compiled │ │ └── __init__.py ├── meson.build ├── pyproject.toml ├── requirements-dev.txt └── tests │ └── test_circle.py ├── src ├── circle │ └── circle_props.f90 ├── constants.f90 └── fexample.f90 └── test └── check.f90 /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/README.md -------------------------------------------------------------------------------- /app/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/app/main.f90 -------------------------------------------------------------------------------- /c_wrapper/fexample_c.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/c_wrapper/fexample_c.f90 -------------------------------------------------------------------------------- /fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/fpm.toml -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- 1 | # Dummy Python README 2 | 3 | dummy -------------------------------------------------------------------------------- /python/build-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/build-requirements.txt -------------------------------------------------------------------------------- /python/fexample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/fexample/__init__.py -------------------------------------------------------------------------------- /python/fexample/circle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/fexample/circle/__init__.py -------------------------------------------------------------------------------- /python/fexample/circle/circle_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/fexample/circle/circle_props.py -------------------------------------------------------------------------------- /python/fexample/compiled/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/fexample/compiled/__init__.py -------------------------------------------------------------------------------- /python/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/meson.build -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /python/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/requirements-dev.txt -------------------------------------------------------------------------------- /python/tests/test_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/python/tests/test_circle.py -------------------------------------------------------------------------------- /src/circle/circle_props.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/src/circle/circle_props.f90 -------------------------------------------------------------------------------- /src/constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/src/constants.f90 -------------------------------------------------------------------------------- /src/fexample.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/src/fexample.f90 -------------------------------------------------------------------------------- /test/check.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SalvadorBrandolin/fortran_meson_py/HEAD/test/check.f90 --------------------------------------------------------------------------------