A command-line utility that creates Python projects.
NQGym
can help you create a Python project template, or a web service project template.
Features of the Python project template:
- Use
make
to facilitate the development process, such as- creating virtual environment
- installing dependent libs
- building the dist
- testing and running UT coverage
- Support
CLI
(Command-Line Interface) to start / stop the app or run other commands from the Python entry point.
Install from PyPi:
$ pip install -U nqgym
Find the help:
$ nqgym --help
$ nqgym create --help
Create a Python project:
$ nqgym create
The generator will ask you for some input data, you might want to have at hand before generating the project.
The input variables, with their default values (some auto generated) are:
project_name
: The name of the project.package_name
: The name of the Python package. By default, based on the project name.python_version
: The version of Python you want to use.
After using the generator, your new project (the directory created) will contain an extensive README.md
with instructions for development, deployment, etc. You can read it to find more details.
Please follow the guide contribution to develop and contribute NQGym.
- Project init.
- Created the Python project template.
- Support make, cli.
- Support UT and UT coverage.
This project is licensed under the terms of the BSD license.