-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (23 loc) · 747 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·29 lines (23 loc) · 747 Bytes
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
__author__ = 'Artem Ryzhikov'
from setuptools import setup
setup(
name="pytorch_ard",
version='0.2.4',
description="Make your PyTorch faster",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/HolyBayes/pytorch_ard',
author='Artem Ryzhikov',
packages=['torch_ard'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 ',
],
keywords='pytorch, bayesian neural networks, ard, deep learning, neural networks, machine learning',
install_requires=[
'torch>=1.1.0',
'torchvision>=0.2.1',
'scikit-learn>=0.19.2',
'pandas'
]
)