forked from ai-med/nn-common-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
12 lines (11 loc) · 795 Bytes
/
setup.py
File metadata and controls
12 lines (11 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
import setuptools
setuptools.setup(name="nn-common-modules",
version="1.1",
url="https://github.com/abhi4ssj/nn-common-modules",
author="Shayan Ahmad Siddiqui, Abhijit Guha Roy",
author_email="shayan.siddiqui89@gmail.com",
description="Common modules, blocks and losses which can be reused in a deep neural netwok specifically for segmentation",
packages=setuptools.find_packages(),
install_requires=['pip>=19.0.0', 'numpy>=1.14.0', 'torch>=1.0.0',
'squeeze_and_excitation @ https://github.com/ai-med/squeeze_and_excitation/releases/download/v1.0/squeeze_and_excitation-1.0-py2.py3-none-any.whl'],
python_requires='>=3.5')