Skip to content

Commit

Permalink
ship with typing information
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Apr 19, 2024
1 parent 4c3ea3a commit 0dcdbc4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.3] - 2024-04-19

### Added
* Add type checking/hinting information to the package distribution.

## [0.4.2] - 2024-04-18

### Changed
Expand Down
Empty file added py.typed
Empty file.
20 changes: 19 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gertils"
version = "0.4.2"
version = "0.4.3"
description = "General computing utilities for data processing and analysis in the Gerlich group at IMBA"
authors = [
"Vince Reuter <vince.reuter@gmail.com>",
Expand All @@ -20,6 +20,24 @@ classifiers = [
"Topic :: Utilities",
"Typing :: Typed",
]
include = ["py.typed"]
exclude = [
# build-related
"build/",
"gertils.egg-info/",

# test-related
".hypothesis/",
"*__pycache__/",
".coverage",

# IDE-related
".idea/",
".vscode/",

# other
".nox/",
]

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 0dcdbc4

Please sign in to comment.