Skip to main content

Assemble: Assemble the packages!

Project description

Assemble enables simplistic package building.

A quick example:

# file: setup.py
from assemble import get_package

package = get_package()

keywords = [
    "about", "this", "package"
]
classifiers = [
    # https://pypi.python.org/pypi?%3Aaction=list_classifiers
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "Natural Language :: English",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",

    "Programming Language :: Python",
    "Programming Language :: Python :: 2",
    "Programming Language :: Python :: 2.7",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.5",
    "Programming Language :: Python :: Implementation :: CPython",

    "Topic :: Software Development :: Libraries :: Python Modules",
]

if __name__ == "__main__":
    package.setup(keywords, classifiers)

While developing your package, you can use the test command to run all your written tests and you can use requirements-scan to build a list of all used packages.

assemble test
assemble requirements-scan > requirements.txt

When your package is ready and your repository is up-to-date, you can register your package, patch the version, build your distribution, upload it to PyPi and tag your repository.

assemble version
assemble build
assemble upload
assemble tag

When you have a clean GIT repository, ran your tests and want to publish right-away, you can use the publish shortcut to run version, build, upload and tag.

assemble publish

To register your package with PyPI, simple call register and Assemble will do the rest.

assemble register

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

Assemble-0.2.2.tar.gz (19.5 kB view hashes)

Uploaded Source

Built Distribution

Assemble-0.2.2-py2.py3-none-any.whl (14.5 kB view hashes)

Uploaded Python 2 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