File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project]
66name = "zenpy"
7- version = "2.0.47 "
7+ version = "2.0.48 "
88authors = [
99 { name="William Coe", email="facetoe@facetoe.com.au" },
1010]
Original file line number Diff line number Diff line change 11from setuptools import setup
22import setuptools
3+ from pathlib import Path
34
5+ this_directory = Path (__file__ ).parent
6+ long_description = (this_directory / "README.md" ).read_text ()
47setup (
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' ,
Original file line number Diff line number Diff line change 6060log = logging .getLogger ()
6161
6262__author__ = "facetoe"
63- __version__ = "2.0.47 "
63+ __version__ = "2.0.48 "
6464
6565
6666class Zenpy (object ):
You can’t perform that action at this time.
0 commit comments