forked from shelfwise/receptivefield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 681 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
VERSION = '0.5.4'
setup(
name='receptivefield',
packages=['receptivefield'],
version=VERSION,
description='Gradient based Receptive field estimation library for Tensorflow and Pytorch',
author='ShelfWise.ai',
author_email='krzysztof.kolasinski@shelfwise.ai',
url='https://github.com/fornaxai/receptivefield',
download_url=f'https://github.com/fornaxai/receptivefield/archive/{VERSION}.tar.gz',
keywords=['tensorflow', 'pytorch'],
install_requires=[
'pillow>=6.2.0',
'matplotlib>=3.1.0',
'numpy>=1.17.0',
'lmfit>=1.3.0'
],
classifiers=[],
include_package_data=True
)