Skip to content

Commit

Permalink
2.0.48 version bump plus long description (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptomail committed Apr 30, 2024
1 parent 47714f5 commit 438902e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml.XXX
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "zenpy"
version = "2.0.47"
version = "2.0.48"
authors = [
{ name="William Coe", email="facetoe@facetoe.com.au" },
]
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
from setuptools import setup
import setuptools
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='zenpy',
packages=setuptools.find_packages(),
version='2.0.47',
version='2.0.48',
description='Python wrapper for the Zendesk API',
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
license_files = ('LICENSE'),
author='Face Toe',
author_email='facetoe@facetoe.com.au',
url='https://github.com/facetoe/zenpy',
download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.47',
download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.48',
install_requires=[
'requests>=2.14.2',
'python-dateutil>=2.7.5',
Expand Down
2 changes: 1 addition & 1 deletion zenpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
log = logging.getLogger()

__author__ = "facetoe"
__version__ = "2.0.47"
__version__ = "2.0.48"


class Zenpy(object):
Expand Down

0 comments on commit 438902e

Please sign in to comment.