Skip to content

Commit

Permalink
chore: add markdown description to pypi package
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-mi committed Aug 9, 2023
1 parent dc87e2a commit 7d18036
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog db-rocket

## Version 1.3.1

- Adding Markdown documentation to package description

## Version 1.3.0

- Remove `rocket trigger` CLI
Expand Down
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
import setuptools

# load the README file and use it as the long_description for PyPI
with open("README.md", encoding="utf8") as f:
readme = f.read()

setuptools.setup(
name="databricks-rocket",
version="1.3.0",
version="1.3.1",
author="GetYourGuide",
author_email="[email protected]",
description="Keep your local python scripts installed and in sync with a databricks notebook. Shortens the feedback loop to develop projects using a hybrid enviroment",
url="https://github.com/getyourguide/databricks-rocket",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/getyourguide/db-rocket",
packages=setuptools.find_packages(),
install_requires=["fire", "watchdog~=2.1.9", "build", "databricks_cli"],
entry_points={
"console_scripts": ["rocket=rocket.rocket:main", "dbrocket=rocket.rocket:main"]
},
license="Apache 2.0",
)

0 comments on commit 7d18036

Please sign in to comment.