--- a +++ b/setup.py @@ -0,0 +1,29 @@ +from setuptools import setup, find_packages +import codecs +import os + +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + +# Setting up +setup( + name='bc-count', + version='0.0.8b1', + author='nemo256 (Amine Neggazi)', + author_email='<neggazimedlamine@gmail.com>', + description='Count blood cells', + packages=find_packages(), + long_description=long_description, + long_description_content_type="text/markdown", + url='https://github.com/nemo256/bc-count', + install_requires=['opencv-python', 'tensorflow', 'numpy', 'scikit-image'], + keywords=['python', 'artificial intelligence', 'deep learning', 'blood cells', 'image segmentation', 'unet'], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'Programming Language :: Python :: 3', + 'Operating System :: OS Independent', + ], + scripts=['bin/bc-count'] +)