-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version to 0.1.1, add long description for PyPI
- Loading branch information
1 parent
092ddb6
commit 44baaf7
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,15 @@ | |
from setuptools import setup | ||
|
||
package_name = "dbt-sqlite" | ||
package_version = "0.1.0" | ||
package_version = "0.1.1" | ||
description = """A SQLite adapter plugin for dbt (data build tool)""" | ||
long_description = "Please see the github repository for detailed information" | ||
|
||
setup( | ||
name=package_name, | ||
version=package_version, | ||
description=description, | ||
long_description=description, | ||
long_description=long_description, | ||
author='Jeff Chiu', | ||
author_email='[email protected]', | ||
url='https://github.com/codeforkjeff/dbt-sqlite', | ||
|