-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Deprecate pkg_resources.
- Loading branch information
Michal Korbela
committed
Sep 27, 2024
1 parent
a8764e4
commit 225171d
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
|
@@ -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.", | ||
|