-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 978 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='self_super_reconst',
version='0.1.0',
author="Guy Gaziv",
author_email='[email protected]',
description="Self-Supervised RGBD Reconstruction From Brain Activity (Official PyTorch implementation)",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords="Self-Supervised Learning; Decoding; Encoding; fMRI Image Reconstruction; Classification; Vision; Depth Estimation",
url='https://github.com/WeizmannVision/SelfSuperReconst',
packages=find_packages(),
include_package_data=True,
tests_require=['pytest'],
license="Yeda",
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
test_suite='tests',
)