Skip to content

Commit

Permalink
Merge pull request #19 from kiwicom/mk/deprecate-pkg-resources
Browse files Browse the repository at this point in the history
chore(deps): Deprecate pkg_resources.
  • Loading branch information
kabell authored Sep 30, 2024
2 parents a8764e4 + 225171d commit a361fb8
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 a361fb8

Please sign in to comment.