Skip to content

Commit 16f6be3

Browse files
committed
bump version for better description
1 parent ae1fb03 commit 16f6be3

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

setup.py

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1-
from distutils.core import setup
1+
from setuptools import setup
2+
from os.path import join, dirname
3+
from pathlib import Path
4+
5+
def read(fname):
6+
"""Read content of a file and return as a string."""
7+
return Path(join(dirname(__file__), fname)).read_text()
28

39
setup(
410
name='pychannels',
5-
version="1.2.0",
11+
version="1.2.1",
612
packages=['pychannels',],
713
license='The MIT License',
8-
description = 'API client for the Channels app - https://getchannels.com',
9-
author = 'Fancy Bits, LLC',
10-
author_email = '[email protected]',
11-
url = 'https://github.com/fancybits/pychannels',
12-
keywords = ['api', 'client', 'channels', 'automation'],
14+
description='API client for the Channels app - https://getchannels.com',
15+
long_description_content_type='text/markdown',
16+
long_description=read('README.md'),
17+
author='Fancy Bits, LLC',
18+
author_email='[email protected]',
19+
url='https://github.com/fancybits/pychannels',
20+
keywords=['api', 'client', 'channels', 'automation'],
1321
install_requires=['requests>=2.0'],
1422
zip_safe=True
1523
)

0 commit comments

Comments
 (0)