-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
41 lines (36 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import io
import os
from setuptools import setup, find_packages
from basic_image_eda.__version__ import __version__
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
REQUIRED = [
# 'opencv-python',
# 'numpy',
# 'matplotlib',
# 'skimage.io',
# 'tifffile',
# 'tqdm',
]
setup(
name='basic-image-eda',
description='image dataset eda tool to check basic information of images.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Soongja/basic-image-eda',
version=__version__,
author='Seungjae Kim',
author_email='[email protected]',
licence='MIT',
packages=find_packages(exclude=["assets", "test_data", "tests"]),
install_requires=REQUIRED,
entry_points={
'console_scripts': [
'basic-image-eda = basic_image_eda.eda:main'
]
}
)