forked from cytomining/DeepProfiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.03 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
42
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.5",
"lxml>=4.2",
"numpy>=1.13",
"pandas>=0.23.0",
"scikit-image>=0.14.0",
"scikit-learn>=0.19.0",
"scipy>=1.1",
"efficientnet>=1.0.0"
"comet-ml>=3.1.6",
# "tensorflow-gpu==1.12.2"
],
extras_require={
"test": [
"pytest>=3.6",
"pytest-cov>=2.0",
"codecov>=2.0"
]
}
)