From 778ca2d1470463a5008ceb7e136d5fd6923e8c75 Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <frank@sauerburger.com> Date: Tue, 28 Aug 2018 21:53:15 +0200 Subject: [PATCH] Fix package name The project is picassool with two 's' and two 'o'. --- .gitignore | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 00d6a49..efd3b42 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -honeyssh.egg-info +picassools.egg-info __pycache__ diff --git a/setup.py b/setup.py index a506f41..d23e850 100644 --- a/setup.py +++ b/setup.py @@ -8,14 +8,14 @@ with open(path.join(this_directory, 'README.md')) as f: setup(name='picassools', version='0.0.0', - packages=["picasools", "picasools.tests"], + packages=["picassools", "picassools.tests"], install_requires=['opencv-python', 'numpy'], scripts=['bin/median-stack'], test_suite='picassools.tests', description='Collection of scripts for image manipulation.', long_description=long_description, long_description_content_type='text/markdown', - url="https://gitlab.sauerburger.com/frank/picasools", + url="https://gitlab.sauerburger.com/frank/picassools", author="Frank Sauerburger", author_email="frank@sauerburger.com", keywords="image maipulation median-stack", -- GitLab