proj-flow 0.8.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. proj_flow-0.8.1/.gitignore +171 -0
  2. proj_flow-0.8.1/.readthedocs.yaml +21 -0
  3. proj_flow-0.8.1/CHANGELOG.rst +209 -0
  4. proj_flow-0.8.1/LICENSE +21 -0
  5. proj_flow-0.8.1/PKG-INFO +81 -0
  6. proj_flow-0.8.1/README.md +57 -0
  7. proj_flow-0.8.1/proj_flow/__init__.py +4 -0
  8. proj_flow-0.8.1/proj_flow/__main__.py +10 -0
  9. proj_flow-0.8.1/proj_flow/api/__init__.py +10 -0
  10. proj_flow-0.8.1/proj_flow/api/arg.py +134 -0
  11. proj_flow-0.8.1/proj_flow/api/completers.py +93 -0
  12. proj_flow-0.8.1/proj_flow/api/ctx.py +238 -0
  13. proj_flow-0.8.1/proj_flow/api/env.py +416 -0
  14. proj_flow-0.8.1/proj_flow/api/init.py +26 -0
  15. proj_flow-0.8.1/proj_flow/api/makefile.py +140 -0
  16. proj_flow-0.8.1/proj_flow/api/step.py +173 -0
  17. proj_flow-0.8.1/proj_flow/base/__init__.py +11 -0
  18. proj_flow-0.8.1/proj_flow/base/cmd.py +50 -0
  19. proj_flow-0.8.1/proj_flow/base/inspect.py +133 -0
  20. proj_flow-0.8.1/proj_flow/base/matrix.py +240 -0
  21. proj_flow-0.8.1/proj_flow/base/plugins.py +44 -0
  22. proj_flow-0.8.1/proj_flow/base/uname.py +71 -0
  23. proj_flow-0.8.1/proj_flow/flow/__init__.py +11 -0
  24. proj_flow-0.8.1/proj_flow/flow/cli/__init__.py +66 -0
  25. proj_flow-0.8.1/proj_flow/flow/cli/cmds.py +385 -0
  26. proj_flow-0.8.1/proj_flow/flow/cli/finder.py +59 -0
  27. proj_flow-0.8.1/proj_flow/flow/configs.py +162 -0
  28. proj_flow-0.8.1/proj_flow/flow/dependency.py +153 -0
  29. proj_flow-0.8.1/proj_flow/flow/init.py +65 -0
  30. proj_flow-0.8.1/proj_flow/flow/interact.py +134 -0
  31. proj_flow-0.8.1/proj_flow/flow/layer.py +176 -0
  32. proj_flow-0.8.1/proj_flow/flow/steps.py +104 -0
  33. proj_flow-0.8.1/proj_flow/log/__init__.py +10 -0
  34. proj_flow-0.8.1/proj_flow/log/commit.py +463 -0
  35. proj_flow-0.8.1/proj_flow/log/fmt.py +12 -0
  36. proj_flow-0.8.1/proj_flow/log/format.py +13 -0
  37. proj_flow-0.8.1/proj_flow/log/hosting/__init__.py +11 -0
  38. proj_flow-0.8.1/proj_flow/log/hosting/github.py +248 -0
  39. proj_flow-0.8.1/proj_flow/log/msg.py +201 -0
  40. proj_flow-0.8.1/proj_flow/log/release.py +34 -0
  41. proj_flow-0.8.1/proj_flow/log/rich_text/__init__.py +22 -0
  42. proj_flow-0.8.1/proj_flow/log/rich_text/api.py +126 -0
  43. proj_flow-0.8.1/proj_flow/log/rich_text/markdown.py +61 -0
  44. proj_flow-0.8.1/proj_flow/log/rich_text/re_structured_text.py +68 -0
  45. proj_flow-0.8.1/proj_flow/plugins/__init__.py +8 -0
  46. proj_flow-0.8.1/proj_flow/plugins/base.py +30 -0
  47. proj_flow-0.8.1/proj_flow/plugins/cmake/__init__.py +11 -0
  48. proj_flow-0.8.1/proj_flow/plugins/cmake/__version__.py +5 -0
  49. proj_flow-0.8.1/proj_flow/plugins/cmake/build.py +29 -0
  50. proj_flow-0.8.1/proj_flow/plugins/cmake/config.py +59 -0
  51. proj_flow-0.8.1/proj_flow/plugins/cmake/context.py +112 -0
  52. proj_flow-0.8.1/proj_flow/plugins/cmake/pack.py +37 -0
  53. proj_flow-0.8.1/proj_flow/plugins/cmake/parser.py +166 -0
  54. proj_flow-0.8.1/proj_flow/plugins/cmake/test.py +29 -0
  55. proj_flow-0.8.1/proj_flow/plugins/commands/__init__.py +12 -0
  56. proj_flow-0.8.1/proj_flow/plugins/commands/bootstrap.py +21 -0
  57. proj_flow-0.8.1/proj_flow/plugins/commands/ci/__init__.py +17 -0
  58. proj_flow-0.8.1/proj_flow/plugins/commands/ci/changelog.py +47 -0
  59. proj_flow-0.8.1/proj_flow/plugins/commands/ci/matrix.py +46 -0
  60. proj_flow-0.8.1/proj_flow/plugins/commands/ci/release.py +116 -0
  61. proj_flow-0.8.1/proj_flow/plugins/commands/init.py +75 -0
  62. proj_flow-0.8.1/proj_flow/plugins/commands/list.py +167 -0
  63. proj_flow-0.8.1/proj_flow/plugins/commands/run.py +147 -0
  64. proj_flow-0.8.1/proj_flow/plugins/commands/system.py +60 -0
  65. proj_flow-0.8.1/proj_flow/plugins/conan/__init__.py +66 -0
  66. proj_flow-0.8.1/proj_flow/plugins/conan/_conan.py +146 -0
  67. proj_flow-0.8.1/proj_flow/plugins/github.py +13 -0
  68. proj_flow-0.8.1/proj_flow/plugins/sign/__init__.py +130 -0
  69. proj_flow-0.8.1/proj_flow/plugins/sign/win32.py +191 -0
  70. proj_flow-0.8.1/proj_flow/plugins/store/__init__.py +11 -0
  71. proj_flow-0.8.1/proj_flow/plugins/store/store_both.py +22 -0
  72. proj_flow-0.8.1/proj_flow/plugins/store/store_packages.py +79 -0
  73. proj_flow-0.8.1/proj_flow/plugins/store/store_tests.py +21 -0
  74. proj_flow-0.8.1/proj_flow/template/layers/base/.clang-format +27 -0
  75. proj_flow-0.8.1/proj_flow/template/layers/base/.flow/config.yml +38 -0
  76. proj_flow-0.8.1/proj_flow/template/layers/base/.flow/flow.py.mustache +172 -0
  77. proj_flow-0.8.1/proj_flow/template/layers/base/.flow/matrix.yml +63 -0
  78. proj_flow-0.8.1/proj_flow/template/layers/base/.flow/official.yml +4 -0
  79. proj_flow-0.8.1/proj_flow/template/layers/base/.gitignore +39 -0
  80. proj_flow-0.8.1/proj_flow/template/layers/base/README.md.mustache +2 -0
  81. proj_flow-0.8.1/proj_flow/template/layers/base/flow +7 -0
  82. proj_flow-0.8.1/proj_flow/template/layers/base/flow.cmd +9 -0
  83. proj_flow-0.8.1/proj_flow/template/layers/base.json +2 -0
  84. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/cmake/common.cmake.mustache +27 -0
  85. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/extensions/wall/__init__.py.mustache +2 -0
  86. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/extensions/wall/icons/__init__.py.mustache +54 -0
  87. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/extensions/wall/icons/magick.py.mustache +97 -0
  88. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/packages/base.cmake.mustache +33 -0
  89. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/packages/config.cmake +12 -0
  90. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/packages/cpack.cmake +3 -0
  91. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/packages/wix/cpack.cmake.mustache +1 -0
  92. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/packages/wix/patches.in.wix +10 -0
  93. proj_flow-0.8.1/proj_flow/template/layers/cmake/.flow/packages/wix.cmake.mustache +13 -0
  94. proj_flow-0.8.1/proj_flow/template/layers/cmake/CMakeGraphVizOptions.cmake +8 -0
  95. proj_flow-0.8.1/proj_flow/template/layers/cmake/CMakeLists.txt.mustache +213 -0
  96. proj_flow-0.8.1/proj_flow/template/layers/cmake/CMakePresets.json +196 -0
  97. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/assets/appicon.ico +0 -0
  98. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/assets/appicon.png +0 -0
  99. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/assets/wix_banner.bmp +0 -0
  100. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/assets/wix_dialog.bmp +0 -0
  101. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/icons/.gitignore +3 -0
  102. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/icons/appicon-mask.svg +6 -0
  103. proj_flow-0.8.1/proj_flow/template/layers/cmake/data/icons/appicon.svg +27 -0
  104. proj_flow-0.8.1/proj_flow/template/layers/cmake/src/main.cc.mustache +38 -0
  105. proj_flow-0.8.1/proj_flow/template/layers/cmake/src/version.hpp.in.mustache +36 -0
  106. proj_flow-0.8.1/proj_flow/template/layers/cmake/tests/test.cc.mustache +17 -0
  107. proj_flow-0.8.1/proj_flow/template/layers/cmake.json +15 -0
  108. proj_flow-0.8.1/proj_flow/template/layers/conan/.flow/cmake/libcxx_toolchain.cmake +4 -0
  109. proj_flow-0.8.1/proj_flow/template/layers/conan/.flow/cmake/output_dirs_setup.cmake +19 -0
  110. proj_flow-0.8.1/proj_flow/template/layers/conan/conanfile.txt +9 -0
  111. proj_flow-0.8.1/proj_flow/template/layers/conan.json +3 -0
  112. proj_flow-0.8.1/proj_flow/template/layers/github_actions/.github/linters/.isort.cfg +4 -0
  113. proj_flow-0.8.1/proj_flow/template/layers/github_actions/.github/linters/.mypy.ini +2 -0
  114. proj_flow-0.8.1/proj_flow/template/layers/github_actions/.github/workflows/build.yml +241 -0
  115. proj_flow-0.8.1/proj_flow/template/layers/github_actions/.github/workflows/linter.yml +59 -0
  116. proj_flow-0.8.1/proj_flow/template/layers/github_actions/CPPLINT.cfg +16 -0
  117. proj_flow-0.8.1/proj_flow/template/layers/github_actions.json +3 -0
  118. proj_flow-0.8.1/proj_flow/template/layers/github_social/.github/ISSUE_TEMPLATE/bug_report.md.mustache +42 -0
  119. proj_flow-0.8.1/proj_flow/template/layers/github_social/.github/ISSUE_TEMPLATE/feature_request.md.mustache +28 -0
  120. proj_flow-0.8.1/proj_flow/template/layers/github_social/CODE_OF_CONDUCT.md.mustache +76 -0
  121. proj_flow-0.8.1/proj_flow/template/layers/github_social/CONTRIBUTING.md +10 -0
  122. proj_flow-0.8.1/proj_flow/template/layers/github_social.json +3 -0
  123. proj_flow-0.8.1/proj_flow/template/licenses/0BSD.mustache +12 -0
  124. proj_flow-0.8.1/proj_flow/template/licenses/MIT.mustache +21 -0
  125. proj_flow-0.8.1/proj_flow/template/licenses/Unlicense.mustache +24 -0
  126. proj_flow-0.8.1/proj_flow/template/licenses/WTFPL.mustache +13 -0
  127. proj_flow-0.8.1/proj_flow/template/licenses/Zlib.mustache +19 -0
  128. proj_flow-0.8.1/pyproject.toml +44 -0
@@ -0,0 +1,171 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+
110
+ # pdm
111
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
112
+ #pdm.lock
113
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
114
+ # in version control.
115
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
116
+ .pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
121
+ __pypackages__/
122
+
123
+ # Celery stuff
124
+ celerybeat-schedule
125
+ celerybeat.pid
126
+
127
+ # SageMath parsed files
128
+ *.sage.py
129
+
130
+ # Environments
131
+ .env
132
+ .venv
133
+ env/
134
+ venv/
135
+ ENV/
136
+ env.bak/
137
+ venv.bak/
138
+
139
+ # Spyder project settings
140
+ .spyderproject
141
+ .spyproject
142
+
143
+ # Rope project settings
144
+ .ropeproject
145
+
146
+ # mkdocs documentation
147
+ /site
148
+
149
+ # mypy
150
+ .mypy_cache/
151
+ .dmypy.json
152
+ dmypy.json
153
+
154
+ # Pyre type checker
155
+ .pyre/
156
+
157
+ # pytype static type analyzer
158
+ .pytype/
159
+
160
+ # Cython debug symbols
161
+ cython_debug/
162
+
163
+ # PyCharm
164
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
165
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
166
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
167
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
168
+ #.idea/
169
+
170
+ # PyPI configuration file
171
+ .pypirc
@@ -0,0 +1,21 @@
1
+ # Read the Docs configuration file
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ # Required
5
+ version: 2
6
+
7
+ # Set the OS, Python version, and other tools you might need
8
+ build:
9
+ os: ubuntu-24.04
10
+ tools:
11
+ python: "3"
12
+ jobs:
13
+ pre_build:
14
+ - python docs/enum-mods.py
15
+
16
+ sphinx:
17
+ configuration: docs/source/conf.py
18
+
19
+ python:
20
+ install:
21
+ - requirements: docs/requirements.txt
@@ -0,0 +1,209 @@
1
+ =========
2
+ Changelog
3
+ =========
4
+
5
+ All notable changes to this project will be documented in this file.
6
+
7
+ `0.8.1 <https://github.com/mzdun/cxx-flow/compare/v0.8.0...v0.8.1>`_ (2025-02-05)
8
+ =================================================================================
9
+
10
+ Bug Fixes
11
+ ---------
12
+
13
+ - rename the package (`a994760 <https://github.com/mzdun/cxx-flow/commit/a994760c82630aee5c962d8910d4183408b10def>`_)
14
+
15
+ `0.8.0 <https://github.com/mzdun/proj-flow/compare/v0.7.1...v0.8.0>`_ (2025-02-05)
16
+ =================================================================================
17
+
18
+ New Features
19
+ ------------
20
+
21
+ - add ci commands (`e90afde <https://github.com/mzdun/proj-flow/commit/e90afde2e4fd1c1e3439f056a9ace31032554cba>`_)
22
+ - changelog support (`a77b99c <https://github.com/mzdun/proj-flow/commit/a77b99c632957a38d83cd91f4f54268b5a0eadeb>`_)
23
+
24
+ Bug Fixes
25
+ ---------
26
+
27
+ - extract the code common to docstr and argparse (`ce09b2f <https://github.com/mzdun/proj-flow/commit/ce09b2f131e8bd2df7563b600ac5d1ff50928957>`_)
28
+
29
+ `0.7.1 <https://github.com/mzdun/proj-flow/compare/v0.7.0...v0.7.1>`_ (2025-02-02)
30
+ =================================================================================
31
+
32
+ *Nothing to report.*
33
+
34
+
35
+ `0.7.0 <https://github.com/mzdun/proj-flow/compare/v0.6.0...v0.7.0>`_ (2025-02-02)
36
+ =================================================================================
37
+
38
+ New Features
39
+ ------------
40
+
41
+ - prepare for docstr modification of commands (`7712728 <https://github.com/mzdun/proj-flow/commit/7712728c91c966d8e31e38d2b84bd5f7c2734faa>`_)
42
+ - support shell completion ``proj-flow`` (`a13358b <https://github.com/mzdun/proj-flow/commit/a13358b5bddd34f3d30fe883d89592742a5395a6>`_)
43
+
44
+ Bug Fixes
45
+ ---------
46
+
47
+ - set CC and CXX before each new configuration (`13fb9a0 <https://github.com/mzdun/proj-flow/commit/13fb9a020fac336cf450b42f18e88ee5c1a1380a>`_)
48
+ - **docs**: adding autodoc to command functions (`cf0b522 <https://github.com/mzdun/proj-flow/commit/cf0b52259a88fd161f90e379716067fe0389cefe>`_)
49
+ - **docs**: extend docstrings for steps (`782dd77 <https://github.com/mzdun/proj-flow/commit/782dd77ed9197d34ca5263fb10084d574dc24721>`_)
50
+ - **docs**: add quick module docstrings (`aaa0f6d <https://github.com/mzdun/proj-flow/commit/aaa0f6de4fe41b19e3f50380967551fe1e974907>`_)
51
+ - **docs**: tweak wording (`25b29db <https://github.com/mzdun/proj-flow/commit/25b29db69eebfedcb551a06a7d868bcafffbdfbb>`_)
52
+
53
+
54
+ `0.6.0 <https://github.com/mzdun/proj-flow/compare/v0.5.0...v0.6.0>`_ (2025-01-31)
55
+ =================================================================================
56
+
57
+ New Features
58
+ ------------
59
+
60
+ - swap JSON with YAML (`9080581 <https://github.com/mzdun/proj-flow/commit/90805812d6cb850522df95f4fa28ef8fa79c49c1>`_)
61
+ - reorganize code (`7f9f256 <https://github.com/mzdun/proj-flow/commit/7f9f256b0c2885e9a74103d6b107e00578d9ad26>`_)
62
+
63
+ Bug Fixes
64
+ ---------
65
+
66
+ - **docs**: add documentation for usage (`a37bf7b <https://github.com/mzdun/proj-flow/commit/a37bf7b8c54c67041a4c32e14b7fc80949d62e2d>`_)
67
+
68
+
69
+ `0.5.0 <https://github.com/mzdun/proj-flow/compare/v0.4.3...v0.5.0>`_ (2025-01-27)
70
+ =================================================================================
71
+
72
+ New Features
73
+ ------------
74
+
75
+ - add subcommands support (`b50919a <https://github.com/mzdun/proj-flow/commit/b50919acd56cb1fcf9dce4e0c943fffda0e24cd5>`_)
76
+
77
+
78
+ `0.4.3 <https://github.com/mzdun/proj-flow/compare/v0.4.2...v0.4.3>`_ (2025-01-27)
79
+ =================================================================================
80
+
81
+ Bug Fixes
82
+ ---------
83
+
84
+ - move github bootstrap into proj-flow (`f1569be <https://github.com/mzdun/proj-flow/commit/f1569be3713a2bf9634fa3b5dedf5455a6cad0f1>`_)
85
+
86
+
87
+ `0.4.2 <https://github.com/mzdun/proj-flow/compare/v0.4.1...v0.4.2>`_ (2025-01-27)
88
+ =================================================================================
89
+
90
+ Bug Fixes
91
+ ---------
92
+
93
+ - code cleanups (`4ac2a64 <https://github.com/mzdun/proj-flow/commit/4ac2a6463e0dffc2437ff7a59e618558b0843ed0>`_)
94
+
95
+
96
+ `0.4.1 <https://github.com/mzdun/proj-flow/compare/v0.3.7...v0.4.1>`_ (2025-01-27)
97
+ =================================================================================
98
+
99
+ Bug Fixes
100
+ ---------
101
+
102
+ - keep to stderr (`ee0b920 <https://github.com/mzdun/proj-flow/commit/ee0b920f6f166a7600dbbcc531e1a51c41abd4cd>`_)
103
+ - reorder the signature reading code (`5ab1e8e <https://github.com/mzdun/proj-flow/commit/5ab1e8e60e03d238bc00f25db77bd86b49d715b9>`_)
104
+ - work with misconfigured environments better (`ed944e9 <https://github.com/mzdun/proj-flow/commit/ed944e9aa074f2ed94a8983c53ec54a1e45effeb>`_)
105
+
106
+
107
+ `0.3.7 <https://github.com/mzdun/proj-flow/compare/v0.3.6...v0.3.7>`_ (2025-01-27)
108
+ =================================================================================
109
+
110
+ Bug Fixes
111
+ ---------
112
+
113
+ - tak generator from a real place (`db5ffd8 <https://github.com/mzdun/proj-flow/commit/db5ffd8b52c5d5e0eda890bc9e086846942e1871>`_)
114
+
115
+
116
+ `0.3.6 <https://github.com/mzdun/proj-flow/compare/v0.3.5...v0.3.6>`_ (2025-01-27)
117
+ =================================================================================
118
+
119
+ Bug Fixes
120
+ ---------
121
+
122
+ - write the generators on store (`396e5f2 <https://github.com/mzdun/proj-flow/commit/396e5f21f6d6c66b2808792c00d21e7ea9fe219f>`_)
123
+
124
+
125
+ `0.3.5 <https://github.com/mzdun/proj-flow/compare/v0.3.4...v0.3.5>`_ (2025-01-26)
126
+ =================================================================================
127
+
128
+ Bug Fixes
129
+ ---------
130
+
131
+ - bring back Windows in github --matrix (`63f1cef <https://github.com/mzdun/proj-flow/commit/63f1ceff17e253eeadd1bd501f8966b03569c509>`_)
132
+
133
+
134
+ `0.3.4 <https://github.com/mzdun/proj-flow/compare/v0.3.3...v0.3.4>`_ (2025-01-26)
135
+ =================================================================================
136
+
137
+ Bug Fixes
138
+ ---------
139
+
140
+ - bring back f-strings (+ fix the build workflow) (`168c679 <https://github.com/mzdun/proj-flow/commit/168c679eb19f36e599f49e086925f4481d1a302c>`_)
141
+
142
+
143
+ `0.3.3 <https://github.com/mzdun/proj-flow/compare/v0.3.2...v0.3.3>`_ (2025-01-26)
144
+ =================================================================================
145
+
146
+ Bug Fixes
147
+ ---------
148
+
149
+ - downgrade Python even more (`424ae45 <https://github.com/mzdun/proj-flow/commit/424ae4558137557cf905178ef7ad3f88aa202666>`_)
150
+
151
+
152
+ `0.3.2 <https://github.com/mzdun/proj-flow/compare/v0.3.1...v0.3.2>`_ (2025-01-26)
153
+ =================================================================================
154
+
155
+ Bug Fixes
156
+ ---------
157
+
158
+ - clean GitHub Actions support (`f3b572e <https://github.com/mzdun/proj-flow/commit/f3b572e87168cbb4758742b0f28dc692887603dc>`_)
159
+
160
+
161
+ `0.3.1 <https://github.com/mzdun/proj-flow/compare/v0.3.0...v0.3.1>`_ (2025-01-26)
162
+ =================================================================================
163
+
164
+ Bug Fixes
165
+ ---------
166
+
167
+ - downgrade required python (`4eb14b9 <https://github.com/mzdun/proj-flow/commit/4eb14b92eb514adc1a8405bf58be22157cf7c8ae>`_)
168
+
169
+
170
+ `0.3.0 <https://github.com/mzdun/proj-flow/compare/v0.2.0...v0.3.0>`_ (2025-01-26)
171
+ =================================================================================
172
+
173
+ New Features
174
+ ------------
175
+
176
+ - add application icon (`7e42a1c <https://github.com/mzdun/proj-flow/commit/7e42a1cb05894d12aadb418b20b6733148e3e136>`_)
177
+ - add Makefile rule list (`1af5ba3 <https://github.com/mzdun/proj-flow/commit/1af5ba3ce3f323700134132da55479cf5c6cf364>`_)
178
+ - look into .flow/extensions (`fe3741f <https://github.com/mzdun/proj-flow/commit/fe3741f46ae4e20baba286dbec5f8eccdad8941c>`_)
179
+ - add runs_before to steps (`2d65734 <https://github.com/mzdun/proj-flow/commit/2d65734fda53182875637c641f7de947175c02c1>`_)
180
+ - move config dirs inside .flow (`db4e406 <https://github.com/mzdun/proj-flow/commit/db4e4063bac0ccfd4b8f3ef481a2407ce02c6ffc>`_)
181
+ - return the WIX support (`b81011b <https://github.com/mzdun/proj-flow/commit/b81011bbb00ddd3bb34dd5918e9aa46342ab239e>`_)
182
+
183
+ Bug Fixes
184
+ ---------
185
+
186
+ - copy attributes from layers (`7e2ea63 <https://github.com/mzdun/proj-flow/commit/7e2ea637ffe6db855fca5d3a09eb395b8e8d7d62>`_)
187
+ - ignore signature, if it exists (`9b21854 <https://github.com/mzdun/proj-flow/commit/9b218544514edf5e6b9e881062c0e013c7fdeb80>`_)
188
+
189
+
190
+ `0.2.0 <https://github.com/mzdun/proj-flow/commits/v0.2.0>`_ (2025-01-22)
191
+ ========================================================================
192
+
193
+ New Features
194
+ ------------
195
+
196
+ - use win32 signtool on exes and msis (`98c1162 <https://github.com/mzdun/proj-flow/commit/98c11629a7115b9d343374bb14f6fa23f92e6192>`_)
197
+ - add list command (`4ab8ec9 <https://github.com/mzdun/proj-flow/commit/4ab8ec9853c1bc19c495dc4e52190f9603ad6c09>`_)
198
+ - add flow helpers in project root (`18c0afa <https://github.com/mzdun/proj-flow/commit/18c0afaa36067d31d46394370e737fb277e0f660>`_)
199
+ - add store steps (`e3e20e6 <https://github.com/mzdun/proj-flow/commit/e3e20e6a4522218bf9e1602dea4f2862bdb44cfb>`_)
200
+ - add cpack step (`9698c8f <https://github.com/mzdun/proj-flow/commit/9698c8f3d53af42bcc1811e185db00e3165cf6e3>`_)
201
+ - add system command (`b17e6b4 <https://github.com/mzdun/proj-flow/commit/b17e6b4223d3f96641273f453161af6b7620189c>`_)
202
+ - add ctest step (`2f7d32c <https://github.com/mzdun/proj-flow/commit/2f7d32c3bec375517edb8acea2301ebdaaee8a8f>`_)
203
+
204
+ Bug Fixes
205
+ ---------
206
+
207
+ - bring back path re-writing on Windows (`8509f96 <https://github.com/mzdun/proj-flow/commit/8509f96fac75ad289b2c8f60a66ece5048cd22ae>`_)
208
+
209
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Marcin Zdun
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: proj-flow
3
+ Version: 0.8.1
4
+ Summary: C++ project maintenance, automated
5
+ Project-URL: Documentation, https://proj-flow.readthedocs.io/en/latest/
6
+ Project-URL: Homepage, https://pypi.org/project/proj-flow/
7
+ Project-URL: Source Code, https://github.com/mzdun/proj-flow
8
+ Author-email: Marcin Zdun <marcin.zdun@gmail.com>
9
+ License-File: LICENSE
10
+ Keywords: C/C++,c++,ci,cpp,dependency,developer,manager,tool
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Topic :: Software Development :: Build Tools
18
+ Requires-Python: >=3.10
19
+ Requires-Dist: argcomplete
20
+ Requires-Dist: chevron2021
21
+ Requires-Dist: prompt-toolkit
22
+ Requires-Dist: pyyaml
23
+ Description-Content-Type: text/markdown
24
+
25
+ # C++ flow
26
+
27
+ [![Python package workflow badge](https://github.com/mzdun/proj-flow/actions/workflows/python-publish.yml/badge.svg)](https://github.com/mzdun/proj-flow/actions)
28
+ [![PyPI version badge](https://img.shields.io/pypi/v/proj-flow.svg)](https://pypi.python.org/pypi/proj-flow)
29
+ [![PyPI License: MIT](https://img.shields.io/pypi/l/proj-flow.svg)](https://pypi.python.org/pypi/proj-flow)
30
+
31
+ **C++ flow** aims at being a one-stop tool for C++ projects, from creating new
32
+ project, though building and verifying, all the way to publishing releases to
33
+ the repository. It will run a set of known steps and will happily consult your
34
+ project what do you want to call any subset of those steps.
35
+
36
+ Currently, it will make use of Conan for external dependencies, CMake presets
37
+ for config and build and GitHub CLI for releases.
38
+
39
+ ## Installation
40
+
41
+ To create a new project with _C++ flow_, first install it using pip:
42
+
43
+ ```sh
44
+ (.venv) $ pip install proj-flow
45
+ ```
46
+
47
+ Every project created with _C++ flow_ has a self-bootstrapping helper script,
48
+ which will install `proj-flow` if it is needed, using either current virtual
49
+ environment or switching to a private virtual environment (created inside
50
+ `.flow/.venv` directory). This is used by the GitHub workflow in the generated
51
+ projects through the `bootstrap` command.
52
+
53
+ On any platform, this command (and any other) may be called from the root of the
54
+ project with:
55
+
56
+ ```sh
57
+ python .flow/flow.py bootstrap
58
+ ```
59
+
60
+ From Bash with:
61
+
62
+ ```sh
63
+ ./flow bootstrap
64
+ ```
65
+
66
+ From PowerShell with:
67
+
68
+ ```sh
69
+ .\flow bootstrap
70
+ ```
71
+
72
+ ## Creating a project
73
+
74
+ A fresh C++ project can be created with a
75
+
76
+ ```sh
77
+ proj-flow init
78
+ ```
79
+
80
+ This command will ask multiple questions to build Mustache context for the
81
+ project template. For more information, see [the documentation](https://proj-flow.readthedocs.io/en/latest/).
@@ -0,0 +1,57 @@
1
+ # C++ flow
2
+
3
+ [![Python package workflow badge](https://github.com/mzdun/proj-flow/actions/workflows/python-publish.yml/badge.svg)](https://github.com/mzdun/proj-flow/actions)
4
+ [![PyPI version badge](https://img.shields.io/pypi/v/proj-flow.svg)](https://pypi.python.org/pypi/proj-flow)
5
+ [![PyPI License: MIT](https://img.shields.io/pypi/l/proj-flow.svg)](https://pypi.python.org/pypi/proj-flow)
6
+
7
+ **C++ flow** aims at being a one-stop tool for C++ projects, from creating new
8
+ project, though building and verifying, all the way to publishing releases to
9
+ the repository. It will run a set of known steps and will happily consult your
10
+ project what do you want to call any subset of those steps.
11
+
12
+ Currently, it will make use of Conan for external dependencies, CMake presets
13
+ for config and build and GitHub CLI for releases.
14
+
15
+ ## Installation
16
+
17
+ To create a new project with _C++ flow_, first install it using pip:
18
+
19
+ ```sh
20
+ (.venv) $ pip install proj-flow
21
+ ```
22
+
23
+ Every project created with _C++ flow_ has a self-bootstrapping helper script,
24
+ which will install `proj-flow` if it is needed, using either current virtual
25
+ environment or switching to a private virtual environment (created inside
26
+ `.flow/.venv` directory). This is used by the GitHub workflow in the generated
27
+ projects through the `bootstrap` command.
28
+
29
+ On any platform, this command (and any other) may be called from the root of the
30
+ project with:
31
+
32
+ ```sh
33
+ python .flow/flow.py bootstrap
34
+ ```
35
+
36
+ From Bash with:
37
+
38
+ ```sh
39
+ ./flow bootstrap
40
+ ```
41
+
42
+ From PowerShell with:
43
+
44
+ ```sh
45
+ .\flow bootstrap
46
+ ```
47
+
48
+ ## Creating a project
49
+
50
+ A fresh C++ project can be created with a
51
+
52
+ ```sh
53
+ proj-flow init
54
+ ```
55
+
56
+ This command will ask multiple questions to build Mustache context for the
57
+ project template. For more information, see [the documentation](https://proj-flow.readthedocs.io/en/latest/).
@@ -0,0 +1,4 @@
1
+ # Copyright (c) 2025 Marcin Zdun
2
+ # This code is licensed under MIT license (see LICENSE for details)
3
+
4
+ __version__ = "0.8.1"
@@ -0,0 +1,10 @@
1
+ # Copyright (c) 2025 Marcin Zdun
2
+ # This code is licensed under MIT license (see LICENSE for details)
3
+
4
+ """
5
+ The **proj_flow.__main__** allows *C++ flow* to be called as Python component.
6
+ """
7
+
8
+ from .flow.cli import main
9
+
10
+ main()
@@ -0,0 +1,10 @@
1
+ # Copyright (c) 2025 Marcin Zdun
2
+ # This code is licensed under MIT license (see LICENSE for details)
3
+
4
+ """
5
+ The **proj_flow.api** contains public APIs, usable in third-party plugins.
6
+ """
7
+
8
+ from . import arg, completers, ctx, env, init, makefile, step
9
+
10
+ __all__ = ["arg", "completers", "ctx", "env", "init", "makefile", "step"]