-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
20 lines (20 loc) · 882 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name='bayesian-nn',
packages=['bayesian-nn'],
version='0.1',
description='A Bayesian neural network library',
author='Xuechen Li',
author_email='[email protected]',
url='https://github.com/lxuechen/bayesian-nn',
download_url='https://github.com/lxuechen/bayesian-nn/archive/0.1.tar.gz',
keywords='machine learning bayesian neural network tensorflow',
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'],
)