an opinionated base package for builds using uranium
Project description
uranium-plus: opinionated usage of uranium
uranium-plus is an alpha project. use at your own risk, and things are subject to change
uranium-plus is an opinionated way of using uranium, relying on standardization to provide functionality out of the box:
- a
uranium test
directive, using pytest - a
uranium publish
directive, to publish packages - a
uranium main
directive,
standard conventions
- your tests live in either in a "tests" directory under your main module.
- a setup.py file is used to declare your package
using uranium-plus in your ubuild.py
You can install uranium-plus, then call the provided boostrap function to bootstrap your repo. from that point on, you will have all the standard uranium-plus goodies:
# ubuild.py
build.packages.install("uranium-plus")
import uranium_plus
build.config.update({
"uranium-plus": {
"module": "my-module"
}
})
uranium_plus.bootstrap(build)
Using uranium-plus for vscode
uranium-plus includes built in configuration for maximum compatibility with vscode's vscode-python extension.
modify your uranium-plus installation to include the vscode extras:
# ubuild.py
build.packages.install("uranium-plus[vscode]")
import uranium_plus
Design / Best Practices
uranium-plus ensures best practices that are not necessarily enforced by uranium itself, this inclues:
Installing all dependencies and requirements during the main() call.
Developers may go offline at inopportune times. As a result, there should not be surprise dependencies that are discovered only when the task is invoked for the first time.
uranium-plus moves almost all dependencies to the setup.py, and moves dependencies that can only be resolved by user configuration (such as test.packages) to the main() function to be installed then.
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 uranium_plus-2.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d2ed5a61d6e050d0c2eca9552a3c223894f6ed7c0055f0607e2cd344825e5c0 |
|
MD5 | 50acd9637773dda9e1734dd38919831b |
|
BLAKE2b-256 | d56636e124d64b28e25ac98ef7131d5796c653bed6e49e9007da16c47c154a6e |