-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 863 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
VERSION = '0.0.1'
DESCRIPTION = "Image Processing Package"
LONG_DESCRIPTION = (HERE / "README.md" ).read_text(encoding='utf-8')
LONG_DESCRIPTION_TYPE = "text/markdown"
setup(
name="dermoscopy_preprocessing",
version=VERSION,
author="Claudia Olavarrieta Martinez, Marcos A. Valdivie Rodriguez, Luis E. Dalmau Coopat",
author_email="<claudiaomtnez@gmail.com>,<mavaldivie98@gmail.com>,<luke.dalmau@gmail.com>",
url="https://github.com/ClaudiaOM/Image_Preprocessing_Library",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_TYPE,
packages=find_packages(),
install_requires=["opencv-python", "numpy"],
keywords=["python", "computer vision", "images", "dermoscopy"]
)