Skip to content

Commit 4e03881

Browse files
authored
Merge pull request #190 from EasyPost/fix_package_discovery
fix: package discovery
2 parents 225ad79 + f388e45 commit 4e03881

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## v7.1.1 (2022-05-09)
4+
5+
- Fixes the inclusion of the new `beta` module
6+
37
## v7.1.0 (2022-05-09)
48

59
- Adds a `lowest_rate()` function to Orders and Pickups

easypost/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "7.1.0"
1+
VERSION = "7.1.1"
22

33
elements = VERSION.split("-")
44
numbers = [str(v) for v in elements[0].split(".")]

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
from setuptools import setup
1+
from setuptools import (
2+
find_packages,
3+
setup,
4+
)
25

36

47
REQUIREMENTS = [
@@ -30,12 +33,17 @@
3033

3134
setup(
3235
name="easypost",
33-
version="7.1.0",
36+
version="7.1.1",
3437
description="EasyPost Shipping API Client Library for Python",
3538
author="EasyPost",
3639
author_email="[email protected]",
3740
url="https://easypost.com/",
38-
packages=["easypost"],
41+
packages=find_packages(
42+
exclude=[
43+
"examples",
44+
"tests",
45+
]
46+
),
3947
install_requires=REQUIREMENTS,
4048
extras_require={
4149
"dev": DEV_REQUIREMENTS + CPYTHON_DEV_REQUIREMENTS,

0 commit comments

Comments
 (0)