Skip to content

Commit

Permalink
Include README in pypi description
Browse files Browse the repository at this point in the history
  • Loading branch information
erik committed Jan 4, 2019
1 parent 0778b33 commit b2a2d3f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
import os.path

from setuptools import setup

__version__ = '1.0.0rc1'
__version__ = '1.0.0rc2'


readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme_path) as fp:
long_description = fp.read()

setup(
name='squabble',
version=__version__,
description='An extensible linter for SQL',
long_description=long_description,
author='Erik Price',
url='https://github.com/erik/squabble',
packages=['squabble'],
Expand Down

0 comments on commit b2a2d3f

Please sign in to comment.