Create the file and folder structure for a Python package
Project description
create-python-package
Initialize a new package using best practices as described by the Python Packaging Authority (PyPA). Perfect for beginners and experts alike. No more guesswork!
Read more on the blog post.
Overview
This package ships with four CLI entrypoints:
- build-python-package
- create-python-package
- create-venv
- publish-python-package
To use create-python-package:
create-python-package mypackage
cd mypackage
source activate
To publish (which automatically builds first), run
publish-python-package path_to_package
To build without publishing
build-python-package path_to_package
To create a virtual environment
create-venv path # creates venv at path/venv and symlink to activate at path/activate
# then run `source activate` to activate the virtual environment
Virtualenv ready to go!
Inside the directory you can run
source activate
to activate an isolated Python environment that was created specifically for that package. To deactivate it, type
deactivate
To learn more about virtual environments, see Creating Virtual Environments.
Installation
pipx allows you to run or install Python binaries from packages
python3 -m pip install --user pipx
pipx ensurepath
You can run the latest version directly with
pipx run create-python-package
or install with
pipx install create-python-package
pipx install create-python-package installed package create-python-package, 0.0.0.5 These binaries are now globally available - build-python-package - create-python-package - create-venv - publish-python-package done! ✨ 🌟 ✨
If you do not wish to use pipx, you can install as follows.
python3 -m venv venv # create a virtual environment
source venv/bin/activate # activate the virtual environment
pip install -U pip # upgrade pip
pip install create-python-package
Requires Python 3.6+.
Example Session
> create-python-package /tmp/fake
Creating a new Python package in /private/tmp/fake
Creating a virtual environment at /private/tmp/fake/venv
Upgrading pip in the virtual environment.
Initialized a git repository.
Success! Created fake at /private/tmp/fake
Inside that directory, you can run several commands
source activate
Activates this package's isolated Python environment
pip install PACKAGE
Installs a package to current environment
pip install -e .
Installs this package in editable mode to the current environment
We suggest that you being by typing:
cd fake
source activate
To deactivate the virtual environment, type `deactivate`.
Questions? Create an issue at https://github.com/cs01/create-python-package
Happy hacking!
Credits
Created and published using create-python-package
😄
Inspired by create-react-app
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 create-python-package-0.1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cc5ee2927a9e69f1950f702c56cddac106d7460f1bef8c693862e766db95f59 |
|
MD5 | 8310d4ba8bae8ae0f909f307dbca7f33 |
|
BLAKE2b-256 | 03204640e0788d6002b81571fafb0c8690022faf2aa86cc456853879e282c2ca |
Hashes for create_python_package-0.1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 156135c4f3d441a3a7ceb0ce2157b33d9c57cb564896716559141df989529172 |
|
MD5 | 5e8fb70a3c8107795b25d68d6bcc4784 |
|
BLAKE2b-256 | 91c3fd86d39bce6e05e04baa0fc64d5c941bedfc8b029881455b3d80eefa185a |