Metadata-Version: 2.1
Name: uranium-plus
Version: 1.8.0
Summary: an opinionated base package for builds using uranium
Home-page: http://uranium.readthedocs.org
Author: Yusuke Tsutsumi
Author-email: yusuke@tsutsumi.io
License: UNKNOWN
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, 
        
        ## 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
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Software Distribution
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: vscode
