Skip to content

Commit

Permalink
final fix for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedbelgacem committed Dec 22, 2021
1 parent ac3f17f commit 486e6b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup
from setuptools import setup,find_packages

setup(
name='TunAugmentor',
packages=['TunAugmentor','transformations'],
packages=(find_packages()),
version='0.1.8',
description='Python library for image data augmentation',
author='Ahmed Belgacem, Firas Meddeb',
author_email = '[email protected]',
url="https://github.com/ahmedbelgacem/TunAugmentor",
download_url ="https://github.com/ahmedbelgacem/TunAugmentor/archive/refs/tags/0.1.6.tar.gz",
download_url ="https://github.com/ahmedbelgacem/TunAugmentor/archive/refs/tags/0.1.8.tar.gz",
license='MIT',
install_requires=['numpy','opencv-python'],
setup_requires=['pytest-runner'],
Expand Down

0 comments on commit 486e6b3

Please sign in to comment.