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
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyx-manager-1.7.1.tar.gz.
File metadata
- Download URL: pyx-manager-1.7.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e79465213836ff565c4e7122ffdb8133eff1a53115af8885dbac18e1afdecfb
|
|
| MD5 |
88a93fe00c1307c6d001d0b3111023b4
|
|
| BLAKE2b-256 |
ddd664e7990339fee9aad2fa5f049e0252f4eeae4ea40dd5d607b904cef45920
|
File details
Details for the file pyx_manager-1.7.1-py3-none-any.whl.
File metadata
- Download URL: pyx_manager-1.7.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc3bed3157514715ca568c154a98931eeb1634376e02a7a71c47a537f37f823b
|
|
| MD5 |
930e0995fea7907b34497141a4d085ed
|
|
| BLAKE2b-256 |
5c73b9488d24047c41192f5f507c5d6d5b698452a6f90220b3d1e16ff8471876
|