Skip to main content

This is a sample package which follows the instructions for publishing a Python package to PyPI.

Project description

DEMO-PACKAGE-PYTHON

This sample package follows the instructions for publishing a Python package in PyPI.

This repository can be used as a template for building packages. See section Reusing as Template for more info on how.

Outline

This README.md file is organized as follows:

  1. Outline
  2. Full Instructions
  3. Summarized/Compact Instructions
  4. Code Structure
  5. Demo Package Installation Instructions
  6. Reusing as Template
  7. Adding Additional Files

Full Instructions

Full instructions for publishing a Python package using PyPI can be found here: https://packaging.python.org/en/latest/tutorials/packaging-projects/

I made a tinyurl.com short-link for the tutorial link above:

https://tinyurl.com/how-to-package-python

If you want, you can include the links above in your bookmarks.

Summarized/Compact Instructions

In summary, the instructions can be divided into the outline below if you don't feel like clicking the tutorial link again and again.

Full instructions can be found in the tutorials above in case the summary doesn't still help in recalling the procedures.

  1. Creating a package
    1. Create package files (see code structure below for an example)
    2. Create tests/ directory
    3. Create pyproject.toml with the necessary [build-system], [project], and [project.urls] options
    4. Configure metadata of project. Common metadata are shown below. For a more thorough example, see pyproject.toml
      1. name
      2. version
      3. authors (must be in array format)
      4. description
      5. readme
      6. license
      7. requires-python
      8. classifiers
    5. Create README.md file
    6. Create LICENSE file
  2. Generating distribution archives
    1. Step 1: Install build package
      python3 -m pip install --upgrade build`
      
    2. Step 2: Run python3 -m build on the first build and successive build updates for different versions.
      • Generates a dist/ folder for the built package
      • Puts a .whl and .tar.gz file in the dist folder for the current version.
  3. Uploading the distribution archives
    1. Install twine, a tool for uploading packages to different package indices.
      python3 -m pip install --upgrade twine
      
    2. Upload archives under dist
      python3 -m twine upload --repository testpypi dist/*
      

Code Structure

demo-package-python
    dist/                           # distribution files 
    env/                            # virtual environment for the package 
    scripts/                        # scripts 
        build_pyproject_toml.py     # build pyproject_toml.py 
    src/                            # source files for the package 
    tests/                          # tests for the package 
        main.py         
    utils/  
        build.sh                    # shell script for building package
        publish.sh                  # shell script for publishing package
        setup.sh                    # shell script for setting up package
    LICENSE                         # MIT License 
    pyproject.dev.toml              # project configuration 
    pyproject.toml                  # built project configuration
    requirements.txt                # requirements list generated by pip freeze

Demo Package Installation Instructions

The demo package has a simple API of 3 functions.

  • .say_hello_world()
  • .say_hi(name)
  • .random_rainbow_color() - uses the faker package

To use this package: pip install demo_package_python

Then:

import demo_package_python as demo_package

print(".sayHello() => " + demo_package.say_hello_world()) 
print(".sayHi('John') => " + demo_package.say_hi('John'))
print(".randomRainbowColor() => " + demo_package.random_rainbow_color())

It should return the following:

.say_hello() => Hello, World! 
.say_hi('John') => Hi, John!
.random_rainbow_color() => blue

Reusing as Template

If you intend to reuse this package as a template for future package projects, use the following commands:

  1. Clone the project:

    git clone https://github.com/lvjhn/demo-package-python [your_project]
    
  2. Go to your project directory:

    cd [your_project]
    
  3. Edit pyproject.dev.toml to match your project description:

    Make sure to edit the right file, you might accidentally edit pyproject.toml instead.

    The file pyproject.toml is automatically built from pyproject.dev.toml by adding the dependencies list in requirements.txt before building.

  4. Remove contents of src/demo_package_python:

    rm -rf src/demo_package_python/*
    
  5. Create __init__.py in src/demo_package_python:

    touch src/demo_package_python/__init__.py
    
  6. Rename src/demo_package_python to src/[your_project_name]:

    mv src/demo_package_python src/[your_package_name]
    
  7. Make sure that your have virtualenv installed and then run the following:

    virtualenv env 
    

    or

    python3 -m venv env
    
  8. Activate virtual environment:

    source env/bin/activate
    

    Make sure that the virtual environment is activated before running the succeeding commands.

  9. Run from the command line:

    bash utils/setup.sh
    

    This command should install the packages on the env/ folder and not on the default location.

  10. Use the following commands to simplify building and publishing routines:

    Make sure to run the following commands in the virtual environment mode by running source env/bin/activate if you haven't yet.

    1. To Build Project
      bash utils/build.sh
      
    2. To Publish Project
      bash utils/publish.sh
      

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

custom_bench_fsr-0.0.22.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

custom_bench_fsr-0.0.22-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file custom_bench_fsr-0.0.22.tar.gz.

File metadata

  • Download URL: custom_bench_fsr-0.0.22.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.12

File hashes

Hashes for custom_bench_fsr-0.0.22.tar.gz
Algorithm Hash digest
SHA256 b1b83794cf81555be129cafefeacedc17a2d23655a87b266665dd26919fa9694
MD5 dd8bef3d968e9b38f37cca8b255abbf8
BLAKE2b-256 95922cd6dccfb7ad93330fd2e988e44dbccae9b87990e743218c4a14a6b3bb20

See more details on using hashes here.

File details

Details for the file custom_bench_fsr-0.0.22-py3-none-any.whl.

File metadata

File hashes

Hashes for custom_bench_fsr-0.0.22-py3-none-any.whl
Algorithm Hash digest
SHA256 95b3d86e74a23c128333a71f91a4afdea96e05320304f833a2c4428d841f9911
MD5 6310d65e853f310b29cd642d7d94b35a
BLAKE2b-256 101d1beef7bcc9a901f8278cf3efc273fd8fcd165a0582d9bab5cc29c4471f3a

See more details on using hashes here.

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