Skip to content

Commit

Permalink
Fix pypi long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Aug 21, 2018
1 parent 2ea8c69 commit 4caeba9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -7,4 +7,5 @@
*.iml
/pybigquery.egg-info
/dist
/build
/build
env
6 changes: 6 additions & 0 deletions setup.py
Expand Up @@ -2,10 +2,16 @@

from setuptools import setup

def readme():
with open('README.rst') as f:
return f.read()

setup(
name="pybigquery",
version='0.3.3',
description="SQLAlchemy dialect for BigQuery",
long_description=readme(),
long_description_content_type="text/x-rst",
author="Maxim Zudilov",
author_email="maxim.zudilov@gmail.com",
packages=['pybigquery'],
Expand Down

0 comments on commit 4caeba9

Please sign in to comment.