Skip to content

Commit 438902e

Browse files
authored
2.0.48 version bump plus long description (#627)
1 parent 47714f5 commit 438902e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

pyproject.toml.XXX

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "zenpy"
7-
version = "2.0.47"
7+
version = "2.0.48"
88
authors = [
99
{ name="William Coe", email="facetoe@facetoe.com.au" },
1010
]

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
from setuptools import setup
22
import setuptools
3+
from pathlib import Path
34

5+
this_directory = Path(__file__).parent
6+
long_description = (this_directory / "README.md").read_text()
47
setup(
58
name='zenpy',
69
packages=setuptools.find_packages(),
7-
version='2.0.47',
10+
version='2.0.48',
811
description='Python wrapper for the Zendesk API',
12+
long_description=long_description,
13+
long_description_content_type='text/markdown',
914
license='GPLv3',
1015
license_files = ('LICENSE'),
1116
author='Face Toe',
1217
author_email='facetoe@facetoe.com.au',
1318
url='https://github.com/facetoe/zenpy',
14-
download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.47',
19+
download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.48',
1520
install_requires=[
1621
'requests>=2.14.2',
1722
'python-dateutil>=2.7.5',

zenpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
log = logging.getLogger()
6161

6262
__author__ = "facetoe"
63-
__version__ = "2.0.47"
63+
__version__ = "2.0.48"
6464

6565

6666
class Zenpy(object):

0 commit comments

Comments
 (0)