Comment: | support for #console-scripts: in setup+flit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b5dc7df53f864588e11faa07c9815146 |
User & Date: | mario on 2022-10-26 16:50:11 |
Other Links: | manifest | tags |
2022-10-27
| ||
05:34 | lots pylint fixes, add documentation check-in: 9c3d295916 user: mario tags: trunk | |
2022-10-26
| ||
16:50 | support for #console-scripts: in setup+flit check-in: b5dc7df53f user: mario tags: trunk | |
14:00 | add warning and missing pluginconf. references check-in: 85f6aa649a user: mario tags: trunk | |
Modified README.md from [afd1caefa1] to [d0883b96e6].
104 105 106 107 108 109 110 111 112 113 114 115 116 117 | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | + | #### get_data( filename= ) Is mostly an alias for pkgutil.get_data(). Abstracts usage within PYZ packages a little. #### argparse_map() Provides a simpler way to specify ugly argparse definitions. And allows to amass options from plugins. # GUI There's a Tkinter/PySimpleGUI variant of the option dialog from [streamtuner2](https://fossil.include-once.org/streamtuner2/) included:  |
166 167 168 169 170 171 172 | 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | + + + + + + + + + + + + + + + + - + - + | automatic lookup. The non-standard PMD field `# classifiers: x11, python` can be used to lookup trove categories (crude search on select topics). All other `setup(fields=…)` are passed on to distutils/setuptools as is. -- Btw, [setupmeta](https://pypi.org/project/setupmeta/) is an even more versatile wrapper with sensible defaults and source scanning. # flit wrapper Alternatively, there's `pluginconf.flit` to utilize pyproject.toml for building packages, while sourcing meta data from the primary package file. [build-system] requires = ["flit_core", "pluginconf"] build-backend = "pluginconf.flit" [project] name = "projectname" It can be invoked via `python -m pluginconf.flit build` or even `flit-pluginconf build`. It's not very robust however. |
Modified pluginconf/__init__.py from [4d5e4ffe7f] to [a0794eef80].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | - + + | # encoding: utf-8 # api: python ##type: extract # category: config # title: Plugin configuration # description: Read meta data, pyz/package contents, module locating |
Modified pluginconf/flit.py from [ff6747a2ac] to [7b6634f0e5].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | - + - + + + - - - + + + - - - + + + + + + + - + - - - + - + + + + + + - + + - + + - + + + - - - - - + - - + - - - + - - + + - - - + + + - + - + - + - - - - - + + + - - - - + - - - + - - - + + + - - - - + + + - - - - - - - - - + - - - - - - - + - - - - - - - - + - - - - + + + - - + - - - - - - + + + - + - - - + + | # encoding: utf-8 # api: pep517 # title: flit backend # description: wraps flit_core.buildapi |
Modified pluginconf/setup.py from [9ccd666569] to [786122b150].
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | + + + + + + + + + + | return [] def _datafiles_man(): """ data_files= """ for man in glob.glob("man*/*.[12345678]"): section = man[-1] yield ("man/man"+section, [man],) def _entry_points(pmd): """ collect console-scripts: """ params = {} for field in ["console_scripts", "gui_scripts"]: if not pmd.get(field): continue params[field] = params.get(field, []) + re.findall("(\w+[^,;\s]+=\w+[^,;\s]+)", pmd[field]) return params def _keywords(pmd): """ keywords= """ return pmd.get("keywords") or pmd.get("category") def setup(debug=0, **kwargs): """ Wrapper around `setuptools.setup()` which adds some defaults and plugin meta data import, with two shortcut params: |
194 195 196 197 198 199 200 | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | - + | kwargs[k] = v # package name if "name" not in kwargs and kwargs.get("packages"): kwargs["name"] = kwargs["packages"][0] # read README |
242 243 244 245 246 247 248 249 250 251 252 253 254 255 | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | + + + | # keywords= if not "keywords" in kwargs: kwargs["keywords"] = _keywords(pmd) # automatic inclusions kwargs["data_files"] = kwargs.get("data_files", []) + list(_datafiles_man()) # entry points for section, entries in _entry_points(pmd).items(): kwargs["entry_points"][section] = kwargs["entry_points"].get(section, []) + entries # classifiers= # license: if pmd.get("license") and not any(re.match("License ::", l) for l in kwargs["classifiers"]): kwargs["classifiers"].extend(_trove_license(pmd)) # state: if pmd.get("state", pmd.get("status")) and not any(re.match("Development Status ::", l) for l in kwargs["classifiers"]): |
Modified setup.py from [f210898d14] to [44fd264fd9].
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - + + + + + + | #from os import system #system("pandoc -f markdown -t rst README.md > README.rst") pluginconf.setup.setup( fn="pluginconf/__init__.py", |