Skip to content

Commit

Permalink
Add long description for PyPI and newly supported Python versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
krisgesling committed Mar 24, 2021
1 parent c2babb8 commit 31c2c49
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
with open(join(dirname(abspath(__file__)), 'requirements.txt')) as f:
requirements = f.readlines()

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='padatious',
version='0.4.8', # Also change in padatious/__init__.py
description='A neural network intent parser',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/MycroftAI/padatious',
author='Matthew Scholefield',
author_email='matthew331199@gmail.com',
Expand All @@ -34,6 +39,8 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 31c2c49

Please sign in to comment.