Libraries
Libraries #
This chapter will tell you how to make your library installable through Poetry.
Versioning #
Poetry requires PEP 440-compliant versions for all projects.
While Poetry does not enforce any release convention, it used to encourage the use of semantic versioning within the scope of PEP 440 and supports version constraints that are especially suitable for semver.
1.0.0-hotfix.1
is not compatible with PEP 440. You can instead
choose to use 1.0.0-post1
or 1.0.0.post1
.Lock file #
For your library, you may commit the poetry.lock
file if you want to.
This can help your team to always test against the same dependency versions.
However, this lock file will not have any effect on other projects that depend on it.
It only has an effect on the main project.
If you do not want to commit the lock file and you are using git, add it to the .gitignore
.
Packaging #
Before you can actually publish your library, you will need to package it.
poetry build
This command will package your library in two different formats: sdist
which is
the source format, and wheel
which is a compiled
package.
Poetry will automatically include some metadata files when building a package. When building
a wheel
, the following files are included in the .dist-info
directory:
LICENSE
LICENSE.*
COPYING
COPYING.*
LICENSES/**
When building an sdist
, the following files will be included in the root folder:
LICENSE*
Once building is done you are ready to publish your library.
Publishing to PyPI #
Alright, so now you can publish packages.
Poetry will publish to PyPI by default. Anything that is published to PyPI is available automatically through Poetry. Since pendulum is on PyPI we can depend on it without having to specify any additional repositories.
If we wanted to share poetry-demo
with the Python community, we would publish on PyPI as well.
Doing so is really easy.
poetry publish
This will package and publish the library to PyPI, at the condition that you are a registered user and you have configured your credentials properly.
The publish
command does not execute build
by default.
If you want to build and publish your packages together,
just pass the --build
option.
Once this is done, your library will be available to anyone.
Publishing to a private repository #
Sometimes, you may want to keep your library private but also being accessible to your team.
In this case, you will need to use a private repository.
In order to publish to a private repository, you will need to add it to your global list of repositories. See Adding a repository for more information.
Once this is done, you can actually publish to it like so:
poetry publish -r my-repository