forked from cytomining/DeepProfiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1015 Bytes
/
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 setuptools
setuptools.setup(
name="deepprofiler",
version="0.1.0",
author="Juan Caicedo",
author_email="[email protected]",
description=("Tools for representation learning in high throughput image collections"),
license="BSD",
keywords="",
url="https://github.com/jccaicedo/DeepProfiler",
packages=["deepprofiler"],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License"
],
install_requires=[
"beautifulsoup4>=4.6",
"click>=6.7",
"comet_ml>=1.0",
"gpyopt>=1.2"
"keras>=2.2",
"keras_resnet>=0.1.0",
"lxml>=4.2",
"numpy>=1.13",
"pandas>=0.23.0",
"scikit-image>=0.14.0",
"scikit-learn>=0.19.0",
"scipy>=1.1",
"tensorflow>=1.8"
],
extras_require={
"test": [
"pytest>=3.6",
"pytest-cov>=2.0",
"codecov>=2.0"
]
}
)