Skip to content

Commit

Permalink
Add long description (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkemp101 authored Nov 4, 2019
1 parent cf1e3aa commit 570b564
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# workaround for open() with encoding='' python2/3 compatibility
from io import open
from setuptools import setup

with open('README.rst', encoding='utf-8') as file:
long_description = file.read()

setup(
name='tasktiger-admin',
version='0.3.0',
version='0.3.1',
url='http://github.com/closeio/tasktiger-admin',
license='MIT',
description='Admin for tasktiger, a Python task queue',
long_description=long_description,
platforms='any',
classifiers=[
'Intended Audience :: Developers',
Expand Down

0 comments on commit 570b564

Please sign in to comment.