Skip to content

Commit

Permalink
Fix to include py.typed in distributed wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato committed Apr 10, 2023
1 parent 4700bb6 commit f98779a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 37 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.1] - 2023-04-08 :egg:
## [2.0.2] - 2023-04-10 :egg:
- Fix missing `py.typed` files in the distribution package.

## [2.0.0] - 2023-04-08 :egg:
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

11 changes: 0 additions & 11 deletions example.py

This file was deleted.

27 changes: 5 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "essentials-configuration"
version = "2.0.1"
version = "2.0.2"
authors = [{ name = "Roberto Prevato", email = "roberto.prevato@gmail.com" }]
description = "Implementation of key-value pair based configuration for Python applications."
readme = "README.md"
Expand All @@ -30,25 +30,8 @@ full = ["PyYAML", "click"]
[project.scripts]
config = "config.cli.main:main"

[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/examples",
"/deps",
"/htmlcov",
"/tests",
"Makefile",
"CODE_OF_CONDUCT.md",
".isort.cfg",
".gitignore",
".flake8",
"junit",
"requirements.txt",
"mypy.ini",
"pytest.ini",
"venv",
]
[tool.setuptools.package-data]
config = ["*/py.typed"]

[project.urls]
"Homepage" = "https://github.com/Neoteroi/essentials-configuration"
Expand Down

0 comments on commit f98779a

Please sign in to comment.