-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
33 lines (28 loc) · 948 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
from __future__ import absolute_import, print_function
from setuptools import setup, find_packages
from os import path
_dir = path.abspath(path.dirname(__file__))
with open(path.join(_dir,'seggradcam','version.py'), encoding='utf-8') as f:
exec(f.read())
with open(path.join(_dir,'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup (
name='seggradcam',
version=__version__,
description='Seg-Grad-CAM',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kiraving/SegGradCAM',
author='Kira Vinogradova',
author_email='[email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'csbdeep==0.4.0',
'tensorflow==1.14.0', #>=1.14.0,<2.0.0',
'tensorflow-gpu==1.14.0',
#'keras-gpu>=2.0.0',
'opencv-python',
],
)