Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
Python package was empty πŸ˜…
Browse files Browse the repository at this point in the history
  • Loading branch information
fferegrino committed Jul 22, 2018
1 parent ffb6c07 commit bee3711
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import os
import sys

from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.install import install

with open("README.md", "r") as fh:
long_description = fh.read()

# Package version
VERSION = "0.1.0"
VERSION = "0.1.1"

class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
Expand All @@ -32,6 +32,7 @@ def run(self):
description="Prepare your Notebooks to be pushed to GitHub",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
cmdclass={
'verify': VerifyVersionCommand,
Expand Down

0 comments on commit bee3711

Please sign in to comment.