diff --git a/setup.py b/setup.py index 6ce980a..ffd23c8 100755 --- a/setup.py +++ b/setup.py @@ -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='whoami@python273.pw', + + author_email='telegraph@python273.pw', 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'], @@ -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', ] diff --git a/telegraph/__init__.py b/telegraph/__init__.py index d0c4bad..a7f4d86 100644 --- a/telegraph/__init__.py +++ b/telegraph/__init__.py @@ -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