Skip to content

Commit

Permalink
Update version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
python273 committed Aug 4, 2018
1 parent c6ea93b commit 438f657
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
21 changes: 18 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,29 @@
except ImportError:
from distutils.core import setup

version = '1.3.0'


with open('README.md') as f:
long_description = f.read()


setup(
name='telegraph',
version='1.2.1',
version=version,

author='python273',
author_email='[email protected]',

author_email='[email protected]',
url='https://github.com/python273/telegraph',

description='Telegraph API wrapper',
download_url='https://github.com/python273/telegraph/archive/master.zip',
long_description=long_description,
long_description_content_type='text/markdown',

download_url='https://github.com/python273/telegraph/archive/v{}.zip'.format(
version
),
license='MIT',

packages=['telegraph'],
Expand All @@ -38,6 +52,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
]
Expand Down
4 changes: 2 additions & 2 deletions telegraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
@contact: https://python273.pw
@license MIT License, see LICENSE file
Copyright (C) 2016
Copyright (C) 2018
"""

__author__ = 'python273'
__version__ = '1.2.1'
__version__ = '1.3.0'

from .api import Telegraph, TelegraphException
from .upload import upload_file

0 comments on commit 438f657

Please sign in to comment.