mirror of
https://github.com/wassname/attentive-neural-processes.git
synced 2026-06-27 19:29:51 +08:00
11 lines
227 B
Python
11 lines
227 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='neural_processes',
|
|
packages=find_packages(),
|
|
version='0.1.0',
|
|
description='Attentive Neural Processes',
|
|
author='wassname',
|
|
license='Apachev2',
|
|
)
|