forked from nicola-decao/s-vae-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (17 loc) · 781 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
from setuptools import setup
from setuptools import find_packages
setup(
name='hyperspherical_vae',
version='0.1.1',
author='Nicola De Cao, Tim R. Davidson, Luca Falorsi',
author_email='nicola.decao@gmail.com',
description='Pytorch implementation of Hyperspherical Variational Auto-Encoders',
license='MIT',
keywords='pytorch vae variational-auto-encoder von-mises-fisher machine-learning deep-learning manifold-learning',
url='https://nicola-decao.github.io/s-vae-pytorch/',
download_url='https://github.com/tom-pelsmaeker/s-vae-pytorch',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
install_requires=['numpy', 'torch>=0.4.1', 'scipy>=1.0.0', 'numpy'],
packages=find_packages()
)