Skip to content

Commit

Permalink
bump version for better description
Browse files Browse the repository at this point in the history
  • Loading branch information
maddox committed Aug 7, 2020
1 parent ae1fb03 commit 16f6be3
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
from distutils.core import setup
from setuptools import setup
from os.path import join, dirname
from pathlib import Path

def read(fname):
"""Read content of a file and return as a string."""
return Path(join(dirname(__file__), fname)).read_text()

setup(
name='pychannels',
version="1.2.0",
version="1.2.1",
packages=['pychannels',],
license='The MIT License',
description = 'API client for the Channels app - https://getchannels.com',
author = 'Fancy Bits, LLC',
author_email = '[email protected]',
url = 'https://github.com/fancybits/pychannels',
keywords = ['api', 'client', 'channels', 'automation'],
description='API client for the Channels app - https://getchannels.com',
long_description_content_type='text/markdown',
long_description=read('README.md'),
author='Fancy Bits, LLC',
author_email='[email protected]',
url='https://github.com/fancybits/pychannels',
keywords=['api', 'client', 'channels', 'automation'],
install_requires=['requests>=2.0'],
zip_safe=True
)

0 comments on commit 16f6be3

Please sign in to comment.