Skip to content

Commit

Permalink
update setup.py to allow for README rendering at pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
peerchemist committed Aug 3, 2018
1 parent bffb0df commit 3dc8aa6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
from setuptools import setup
from os import path

classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'License :: OSI Approved :: BSD License'
]

# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(name='pacli',
version='0.4.4',
description='Simple CLI PeerAssets client.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['peerassets', 'blockchain', 'assets', 'client'],
url='https://github.com/peerassets/pacli',
author='Peerchemist',
Expand Down

0 comments on commit 3dc8aa6

Please sign in to comment.