Skip to content

Commit

Permalink
chore(deps): Deprecate pkg_resources.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Korbela committed Sep 27, 2024
1 parent a8764e4 commit 225171d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion kw/__init__.py

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

with open("requirements.txt") as f:
REQUIREMENTS = f.read().splitlines()
Expand All @@ -14,11 +14,11 @@

setup(
name="kiwi-json",
version="0.10.0",
version="0.10.1",
url="https://github.com/kiwicom/kiwi-json",
author="Kiwi.com platform team",
author_email="[email protected]",
packages=find_packages(exclude=["test*"]),
packages=find_namespace_packages(exclude=["test*"]),
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
description="DRY JSON encoder.",
Expand Down

0 comments on commit 225171d

Please sign in to comment.