Skip to content

Commit

Permalink
Merge pull request #190 from EasyPost/fix_package_discovery
Browse files Browse the repository at this point in the history
fix: package discovery
  • Loading branch information
Justintime50 authored May 9, 2022
2 parents 225ad79 + f388e45 commit 4e03881
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v7.1.1 (2022-05-09)

- Fixes the inclusion of the new `beta` module

## v7.1.0 (2022-05-09)

- Adds a `lowest_rate()` function to Orders and Pickups
Expand Down
2 changes: 1 addition & 1 deletion easypost/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "7.1.0"
VERSION = "7.1.1"

elements = VERSION.split("-")
numbers = [str(v) for v in elements[0].split(".")]
Expand Down
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from setuptools import setup
from setuptools import (
find_packages,
setup,
)


REQUIREMENTS = [
Expand Down Expand Up @@ -30,12 +33,17 @@

setup(
name="easypost",
version="7.1.0",
version="7.1.1",
description="EasyPost Shipping API Client Library for Python",
author="EasyPost",
author_email="[email protected]",
url="https://easypost.com/",
packages=["easypost"],
packages=find_packages(
exclude=[
"examples",
"tests",
]
),
install_requires=REQUIREMENTS,
extras_require={
"dev": DEV_REQUIREMENTS + CPYTHON_DEV_REQUIREMENTS,
Expand Down

0 comments on commit 4e03881

Please sign in to comment.