Skip to main content

Python packaging utility library

Project description

pkutils: a Python packaging library
===================================

|travis| |versions| |pypi|

Index
-----
`Introduction`_ | `Requirements`_ | `Motivation`_ | `Usage`_ | `Installation`_ |
`Project Structure`_ | `Design Principles`_ | `Scripts`_ | `Contributing`_ | `License`_

Introduction
------------

pkutils is a Python library_ that simplifies python module packaging. It is
intended to be used in your package's ``setup.py`` file.

With pkutils, you can

- Parse requirements files
- Determine your project's development status
- Read text files
- and much more...

Requirements
------------

pkutils has been tested and is known to work on Python 2.7, 3.4, and 3.5;
PyPy2 5.1.1 and PyPy3 5.2.0-alpha1.

Motivation
----------

Python has a great packaging system, but to actually create and publish a
package requires a lot of work to do well. I designed pkutils to provide
many useful packaging use-cases out of the box. For example, to automatically
include the contents of your ``requirements.txt`` file, simply add the following
to ``setup.py``:

.. code-block:: python

import pkutils

...

requirements = list(pkutils.parse_requirements('requirements.txt'))
dev_requirements = list(pkutils.parse_requirements('dev-requirements.txt'))

setup(
...
install_requires=requirements,
tests_require=dev_requirements,
...)

.. _library:

Usage
-----

pkutils is intended to be used directly as a Python library.

``my_package/__init__.py``

.. code-block:: python

__version__ = '0.5.4'

__title__ = 'my_package'
__author__ = 'Reuben Cummings'
__description__ = 'My super awesome great package'
__email__ = 'reubano@gmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 Reuben Cummings'

``setup.py``

.. code-block:: python

import pkutils

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

requirements = list(pkutils.parse_requirements('requirements.txt'))
dependencies = list(pkutils.parse_requirements('requirements.txt', True))
dev_requirements = list(pkutils.parse_requirements('dev-requirements.txt'))
readme = pkutils.read('README.rst')
module = pkutils.parse_module('my_package/__init__.py')
version = module.__version__
project = module.__title__
user = 'reubano'

setup(
name=project,
version=version,
description=module.__description__,
long_description=readme,
author=module.__author__,
author_email=module.__email__,
install_requires=requirements,
tests_require=dev_requirements,
dependency_links=dependencies,
setup_requires=['pkutils'],
url=pkutils.get_url(project, user),
download_url=pkutils.get_dl_url(project, user, version),
classifiers=[
pkutils.LICENSES['MIT'],
pkutils.get_status(version),
...
],
...
)

This is then converted into something like the following:

.. code-block:: python

...

setup(
name='my_package',
version='0.5.4',
description='My super awesome great package',
long_description='my_package: a super awesome great...',
author='Reuben Cummings',
author_email='reubano@gmail.com',
install_requires=['semver==2.2.1'],
tests_require=['semver==2.2.1', 'wheel==0.24.0', 'flake8==2.5.1', ...],
dependency_links=[],
setup_requires=['pkutils'],
url='https://github.com/reubano/pkutils',
download_url='https://github.com/reubano/pkutils/archive/v0.5.4.tar.gz',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
...
],
...
)

Installation
------------

(You are using a `virtualenv`_, right?) [#]_

At the command line, install pkutils using either ``pip`` (*recommended*)

.. code-block:: bash

pip install -u pkutils

or ``easy_install``

.. code-block:: bash

easy_install pkutils

Please see the `installation doc`_ for more details.

Project Structure
-----------------

.. code-block:: bash

┌── CHANGES.rst
├── CONTRIBUTING.rst
├── LICENSE
├── MANIFEST.in
├── Makefile
├── README.md
├── dev-requirements.txt
├── helpers
│   ├── check-stage
│   ├── clean
│   ├── srcdist
│   ├── test
│   └── wheel
├── manage.py
├── pkutils.py
├── requirements.txt
├── setup.cfg
├── setup.py
├── tests
│   ├── __init__.py
│   └── standard.rc
└── tox.ini

Design Principles
-----------------

- minimize external dependencies
- prefer functions over objects
- keep the API as simple as possible

Scripts
-------

pkutils comes with a built in task manager ``manage.py``

Setup
~~~~~

.. code-block:: bash

pip install -r dev-requirements.txt

Examples
~~~~~~~~

*View available commands*

.. code-block:: bash

manage

*Show help for a given command*

.. code-block:: bash

manage <command> -h

*Run python linter and nose tests*

.. code-block:: bash

manage lint
manage test

Or if ``make`` is more your speed...

.. code-block:: bash

make lint
make test

Contributing
------------

Please mimic the coding style/conventions used in this repo.
If you add new classes or functions, please add the appropriate doc blocks with
examples. Also, make sure the python linter and nose tests pass.

Please see the `contributing doc`_ for more details.

License
-------

pkutils is distributed under the `MIT License`_.

.. |travis| image:: https://img.shields.io/travis/reubano/pkutils.svg
:target: https://travis-ci.org/reubano/pkutils

.. |versions| image:: https://img.shields.io/pypi/pyversions/pkutils.svg
:target: https://pypi.python.org/pypi/pkutils

.. |pypi| image:: https://img.shields.io/pypi/v/pkutils.svg
:target: https://pypi.python.org/pypi/pkutils

.. _MIT License: http://opensource.org/licenses/MIT
.. _virtualenv: http://www.virtualenv.org/en/latest/index.html
.. _contributing doc: https://github.com/reubano/pkutils/blob/master/CONTRIBUTING.rst
.. _installation doc: https://github.com/reubano/bump/blob/master/INSTALLATION.rst

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

pkutils-0.13.0.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pkutils-0.13.0-py2.py3-none-any.whl (9.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pkutils-0.13.0.tar.gz.

File metadata

  • Download URL: pkutils-0.13.0.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pkutils-0.13.0.tar.gz
Algorithm Hash digest
SHA256 8ae10f4706d6e4d9f66953fc7ef10df272a4eb6c5b53dc9711aed7cfeed83e7d
MD5 bf92ddaac7804e986d37499a50308c0f
BLAKE2b-256 dd0ba1fae2fb593e103e2ee0541899e5c08926f9f667e8c6aee5ca4ebf1e064e

See more details on using hashes here.

File details

Details for the file pkutils-0.13.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pkutils-0.13.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4bfaae37d03b3549e105bd2fee4335cdb18902ef47466585da7d6530f5ad494d
MD5 6e52e491e8cbe62a80b61379a30ccbbf
BLAKE2b-256 edbc811d0faf5b750aab61f5451c1df709f332412fe80ed1c768f4b8b382d3e0

See more details on using hashes here.

Supported by

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