Skip to main content

Command-line project manager

Project description

Pyx, the task-oriented project manager

This project was primarily inspired by mix, project management tool for Elixir projects. It provides generic tasks for creating, testing, running... Python projects, available as command-line tools.

Structure of a Pyx project

You can create a new project with the following command:

pyx new my_project

This will create the following directory:

my_project/
├── .gitignore
├── main.py
├── my_project
│   └── __init__.py
├── Pipfile
├── .pyx
│   ├── project.py
│   └── tasks
├── README.md
├── setup.py
└── test
    └── test_my_project.py

Let's have a look at this. Your code goes in the directory named after your project; here it's ./my_project/. The reason behind this is that pyx will help you build your project as a package.

The entry point of a Pyx project is main.py. It will be run when calling pyx run at the root of the project. This task will actually activate the corresponding pipenv environment, and run the project there.

The test directory is where unit tests files should be placed. There's already one provided, ./test/test_my_project.py. The unit tests are run with pyx test, which will call the unittest module.

The project also contains a README.md and a .gitignore files, for git projects. It contains a setup.py for distributing your project to PyPI, which can be done through the pyx release task. The credentials and repository for distribution are stored in ./.pyx/project.py; although you don't need to write these: if Pyx cannot find them, you'll be prompted to type them.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyx-manager-1.7.1.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

pyx_manager-1.7.1-py3-none-any.whl (8.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page