Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
include README.md
include LICENSE
include src/confluent_kafka/src/*.[ch]
prune tests
prune docs
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "confluent-kafka"
license = {file = "LICENSE"}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was an issue with LICENSE here. I fixed it by moving to MANIFEST.in file earlier.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm that's odd, since that's where it should be according to docs

version = "2.10.1"
description = "Confluent's Python client for Apache Kafka"
classifiers = [
Expand All @@ -29,6 +30,7 @@ ignore_missing_imports = true

[tool.setuptools]
include-package-data = false
license-files = ["LICENSE"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements/requirements.txt"]}
Expand Down