forked from KamitaniLab/icnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (22 loc) · 885 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
'''Setup script for icnn.'''
from setuptools import setup
VERSION = '1.2.2'
if __name__ == '__main__':
# Long description
with open('./README.md') as f:
long_description = f.read()
# Setup
setup(name='icnn',
version=VERSION,
description='Deep image reconstruction from CNN features (Inverting CNN)',
long_description=long_description,
long_description_content_type='text/markdown',
author='Shen Guo-Hua, Kei Majima',
author_email='[email protected]',
maintainer='Shuntaro C. Aoki',
maintainer_email='[email protected]',
url='https://github.com/KamitaniLab/icnn',
license='MIT',
keywords='neuroscience, brain decoding, deep learning, image reconstruction',
packages=['icnn'],
install_requires=['numpy', 'scipy'])