Diff of /setup.py [000000] .. [0be6a8]

Switch to unified view

a b/setup.py
1
from setuptools import setup, find_packages
2
import codecs
3
import os
4
5
with open("README.md", "r", encoding="utf-8") as fh:
6
    long_description = fh.read()
7
8
# Setting up
9
setup(
10
    name='bc-count',
11
    version='0.0.8b1',
12
    author='nemo256 (Amine Neggazi)',
13
    author_email='<neggazimedlamine@gmail.com>',
14
    description='Count blood cells',
15
    packages=find_packages(),
16
    long_description=long_description,
17
    long_description_content_type="text/markdown",
18
    url='https://github.com/nemo256/bc-count',
19
    install_requires=['opencv-python', 'tensorflow', 'numpy', 'scikit-image'],
20
    keywords=['python', 'artificial intelligence', 'deep learning', 'blood cells', 'image segmentation', 'unet'],
21
    classifiers=[
22
        'Development Status :: 4 - Beta',
23
        'Intended Audience :: Developers',
24
        'Natural Language :: English',
25
        'Programming Language :: Python :: 3',
26
        'Operating System :: OS Independent',
27
    ],
28
    scripts=['bin/bc-count']
29
)