forked from ozan-oktay/Attention-Gated-Networks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 782 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(name='AttentionGatedNetworks',
version='1.0',
description='Pytorch library for Soft Attention',
long_description=readme,
author='Ozan Oktay & Jo Schlemper',
install_requires=[
"numpy",
"torch",
"matplotlib",
"scipy",
"torchvision",
"tqdm",
"visdom",
"nibabel",
"scikit-image",
"h5py",
"pandas",
"dominate",
'torchsample==0.1.3',
],
dependency_links=[
'https://github.com/ozan-oktay/torchsample/tarball/master#egg=torchsample-0.1.3'
],
packages=find_packages(exclude=('tests', 'docs'))
)