A Python package helping to write and maintain Python packages.
Project description
pymetacode
A Python package helping to write and maintain Python packages.
Code that writes code – yes, that’s correct. Automating the boring stuff, one could say, or helping to focus on the creative part of programming. In any case, the idea for this package stems from experience with a couple of Python projects, and as such it is pretty opinionated, focussing on personal needs regarding structure and layout. Nevertheless, it tries to be as user-friendly as possible, coming with an intuitive command-line interface (CLI).
Want to get an idea? Here you go. Creating a new package would be a two-step process:
Write a configuration file for your new package (and afterwards fill it with sensible content)
pymeta write config to mypackage_config.yaml
Create the basic Python package structure for your package.
pymeta create package from mypackage_config.yaml
Once you have your package structure, you can add modules, classes, and functions to your package from within the package’s root directory at any time:
pymeta add module mymodule
pymeta add class MyClass to mymodule
pymeta add function my_function to mymodule
If you ever want to add a graphical user interface (GUI) to your project, this is (now) possible as well:
pymeta add gui
pymeta add window mysubwindow
And now - happy coding!
Features
A list of features:
Create initial package structure (directory layout, files)
Add module, class, and function scaffolds to an existing project, including tests and API documentation
Add initial (Qt) GUI subpackage structure (directory layout, files)
Add (Qt) GUI window scaffolds to existing project, including tests and API documentation
Intuitive command-line interface (CLI)
Initialise git repository; automatically incrementing version number with each commit
And to make it even more convenient for users and future-proof:
Open source project written in Python (>= 3.7)
Developed fully test-driven
Extensive user and API documentation
Installation
To install the pymetacode package on your computer (sensibly within a Python virtual environment), open a terminal (activate your virtual environment), and type in the following:
pip install pymetacode
License
This program is free software: you can redistribute it and/or modify it under the terms of the BSD License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pymetacode-0.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a18d2443556ff9e578049042f8ced275ecd5478714f4f27ef55ea851edbe42bf |
|
MD5 | cfb794c63ab75ee10ff496b167b4c92e |
|
BLAKE2b-256 | 33a2f2e608d9bac878e5e18e2899d1d5ec06c0d28b7fbb781bba681756f656bb |