Skip to content

Commit

Permalink
Merge pull request dnanhkhoa#26 from Iain-S/issue_17
Browse files Browse the repository at this point in the history
Fixed Issue dnanhkhoa#17
  • Loading branch information
dnanhkhoa authored Aug 23, 2020
2 parents d4bd99e + be0c810 commit 50c0f1b
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
Expand Up @@ -16,6 +16,7 @@ def readme(file_name):
version="1.0.7",
description="A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black.",
long_description=readme(file_name="README.md"),
long_description_content_type="text/markdown",
keywords="black-formatter black-beautifier black jupyterlab-extension jupyter-notebook-extension",
url="https://github.com/dnanhkhoa/nb_black",
author="Khoa Duong",
Expand All @@ -24,8 +25,8 @@ def readme(file_name):
py_modules=["nb_black", "lab_black"],
zip_safe=False,
install_requires=[
"yapf >= '0.28'; python_version < '3.6'",
"black >= '19.3'; python_version >= '3.6'",
"yapf >= 0.28; python_version < '3.6'",
"black >= 19.3; python_version >= '3.6'",
"ipython",
],
classifiers=[
Expand Down

0 comments on commit 50c0f1b

Please sign in to comment.