Package skeleton for a python module.
Project description
Package skeleton for an Python module.
Description
Bootstrap a new Python package in less than a minute.
Features
Package management with setuptools and publishing to PyPI.
Secure dependency management with Pipenv.
Linting with Pylint.
CircleCI ready.
Consistent coding with EditorConfig.
Badges from Shields.io.
Bootstrapping a New Project
Clone the master branch of this repository with
$ git clone --single-branch https://github.com/makenew/python-package.git new-python-package $ cd new-python-package
Optionally, reset to the latest release with
$ git reset --hard v1.2.0
Run
$ ./makenew.sh
and follow the prompts. This will replace the boilerplate, delete itself, and stage changes for commit. This script assumes the project repository will be hosted on GitHub. For an alternative location, you must update the URLs manually.
Fill in the README Description section.
If choosing a license other than the one provided: update LICENSE.txt, the README License section, and setup.py with your chosen license.
Depending on how you name your tests, you may need to add them to the find_packages exclude list in setup.py.
Updating
If you want to pull in future updates from this skeleton, you can fetch and merge in changes from this repository.
If this repository is already set as origin, rename it to upstream with
$ git remote rename origin upstream
and then configure your origin branch as normal.
Otherwise, add this as a new remote with
$ git remote add upstream https://github.com/makenew/python-package.git
You can then fetch and merge changes with
$ git fetch upstream $ git merge upstream/master
Changelog
Note that CHANGELOG.md is just a template for this skeleton. The actual changes for this project are documented in the commit history and summarized under Releases.
Installation
This package is registered on the Python Package Index (PyPI) as makenew_python_package.
Install it with
$ pipenv install makenew_python_package
If you are writing a Python package which will depend on this, add this to your requirements in setup.py.
Development and Testing
Source Code
The makenew-python-package source is hosted on GitHub. Clone the project with
$ git clone https://github.com/makenew/python-package.git
Requirements
You will need Python 3 with Pipenv.
Install the development dependencies with
$ pipenv install --dev
Tests
Lint code with
$ python setup.py lint
Run tests with
$ python setup.py test
Publishing
Update the CHANGELOG and the version number in setup.py. Then create a new commit and tag, e.g., the commit message should be like 1.0.0 and git tag v1.0.0. Then push the new git tag which will trigger a CircleCI publish job.
CircleCI
CircleCI should already be configured: this section is for reference only.
The following environment variables must be set on CircleCI:
TWINE_USERNAME: Username for publishing on PyPI.
TWINE_PASSWORD: Password for publishing on PyPI.
These may be set manually or by running the script ./circleci/envvars.sh.
Contributing
Please submit and comment on bug reports and feature requests.
To submit a patch:
Create your feature branch (git checkout -b my-new-feature).
Make changes. Write and run tests.
Commit your changes (git commit -am 'Add some feature').
Push to the branch (git push origin my-new-feature).
Create a new Pull Request.
License
This Python package is licensed under the MIT license.
Warranty
This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright holder or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
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
File details
Details for the file makenew-python-package-2.0.0.tar.gz
.
File metadata
- Download URL: makenew-python-package-2.0.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7775cc9691a85c3a53782a268e1b43c772b8576de085cc1c5fe9b3e4ec08fa3f |
|
MD5 | ebced53b9c115b38a91cdedf8f5760a0 |
|
BLAKE2b-256 | 06a4ab84a5d380aeff60775ea580cc65d8617b93c83715fda62de549a696ed26 |
File details
Details for the file makenew_python_package-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: makenew_python_package-2.0.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8d62758629534192eb329ae2771cd204e0d9c2ca10a2b4cf673ae4466832b93 |
|
MD5 | 7d0526b3ac0c98ff8f48ecf267da4b47 |
|
BLAKE2b-256 | 2ba45d3303accd178ed31f244baa6fd0edef7f1d2f0841a8d752fdc444488b51 |