Skip to content

Instantly share code, notes, and snippets.

@damienmarlier51
Created September 11, 2022 05:00
Show Gist options
  • Save damienmarlier51/7c190835973b3dd432e93fcc1cbd0562 to your computer and use it in GitHub Desktop.
Save damienmarlier51/7c190835973b3dd432e93fcc1cbd0562 to your computer and use it in GitHub Desktop.
Junix setup.py
from setuptools import setup
setup(
name="junix",
version="0.1.4",
author="Damien Marlier",
author_email="damien.marlier@hotmail.fr",
description="Utils to export images from Jupyter notebook",
packages=["junix"],
entry_points={"console_scripts": ["junix = junix.cli:export_images"]},
install_requires=[
"click",
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment