-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.04 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.04 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="timl",
version="0.1.2",
author="Fabrizio Nunnari",
author_email="fabrizio.nunnari@dfki.de",
description="The Skincare project aims at providing tools for the analysis and processing of skin lesions.",
long_description=long_description,
url="https://ai-in-medicine.dfki.de/",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'pytest==4.3.0',
'pandas==0.25.3',
'tensorflow==1.13.1',
'keras==2.2.4',
'Pillow==5.4.1',
'matplotlib==3.0.3',
'Flask==1.0.2',
'requests==2.21.0',
'opencv-python==4.1.1.26',
'scikit-image==0.15.0'
],
# See https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files
package_data={'timl.data': '*'}
)