Skip to content

Commit

Permalink
0.13.1a2 bump, include README.md in pypi description
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbanin committed May 9, 2019
1 parent 1d18a54 commit b0f81ed
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.13.1a1
current_version = 0.13.1a2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="/etc/dbt-horizontal.png" alt="dbt logo"/>
<img src="https://github.com/fishtown-analytics/dbt/blob/master/etc/dbt-horizontal.png?raw=true" alt="dbt logo"/>
</p>
<p align="center">
<a href="https://codeclimate.com/github/fishtown-analytics/dbt">
Expand All @@ -20,7 +20,7 @@

dbt is the T in ELT. Organize, cleanse, denormalize, filter, rename, and pre-aggregate the raw data in your warehouse so that it's ready for analysis.

![dbt architecture](/etc/dbt-arch.png?raw=true)
![dbt architecture](https://github.com/fishtown-analytics/dbt/blob/master/etc/dbt-arch.png?raw=true)

dbt can be used to [aggregate pageviews into sessions](https://github.com/fishtown-analytics/snowplow), calculate [ad spend ROI](https://github.com/fishtown-analytics/facebook-ads), or report on [email campaign performance](https://github.com/fishtown-analytics/mailchimp).

Expand All @@ -30,7 +30,7 @@ Analysts using dbt can transform their data by simply writing select statements,

These select statements, or "models", form a dbt project. Models frequently build on top of one another – dbt makes it easy to [manage relationships](https://docs.getdbt.com/reference#ref) between models, and [visualize these relationships](https://docs.getdbt.com/docs/documentation), as well as assure the quality of your transformations through [testing](https://docs.getdbt.com/docs/testing).

![dbt dag](/etc/dbt-dag.png?raw=true)
![dbt dag](https://github.com/fishtown-analytics/dbt/blob/master/etc/dbt-dag.png?raw=true)

## Getting started

Expand Down
2 changes: 1 addition & 1 deletion core/dbt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ def get_version_information():
.format(version_msg))


__version__ = '0.13.1a1'
__version__ = '0.13.1a2'
installed = get_installed_version()
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read(fname):


package_name = "dbt-core"
package_version = "0.13.1a1"
package_version = "0.13.1a2"
description = """dbt (data build tool) is a command line tool that helps \
analysts and engineers transform data in their warehouse more effectively"""

Expand Down
2 changes: 1 addition & 1 deletion plugins/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

package_name = "dbt-bigquery"
package_version = "0.13.1a1"
package_version = "0.13.1a2"
description = """The bigquery adapter plugin for dbt (data build tool)"""


Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

package_name = "dbt-postgres"
package_version = "0.13.1a1"
package_version = "0.13.1a2"
description = """The postgres adpter plugin for dbt (data build tool)"""

setup(
Expand Down
2 changes: 1 addition & 1 deletion plugins/redshift/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

package_name = "dbt-redshift"
package_version = "0.13.1a1"
package_version = "0.13.1a2"
description = """The redshift adapter plugin for dbt (data build tool)"""


Expand Down
2 changes: 1 addition & 1 deletion plugins/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

package_name = "dbt-snowflake"
package_version = "0.13.1a1"
package_version = "0.13.1a2"
description = """The snowflake adapter plugin for dbt (data build tool)"""


Expand Down
17 changes: 11 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,29 @@
import os


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


package_name = "dbt"
package_version = "0.13.1a1"
description = """dbt (data build tool) is a command line tool that helps \
analysts and engineers transform data in their warehouse more effectively"""
package_version = "0.13.1a2"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""


setup(
name=package_name,
version=package_version,

description=description,
long_description=description,
long_description=long_description,
long_description_content_type='text/markdown',

author="Fishtown Analytics",
author_email="info@fishtownanalytics.com",
url="https://github.com/fishtown-analytics/dbt",

packages=find_packages(),
install_requires=[
'dbt-core=={}'.format(package_version),
Expand Down

0 comments on commit b0f81ed

Please sign in to comment.