forked from pyro-ppl/pyro
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (61 loc) · 1.7 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from __future__ import absolute_import, division, print_function
from setuptools import find_packages, setup
setup(
name='pyro-ppl',
version='0.1.0',
description='A Python library for probabilistic modeling and inference',
packages=find_packages(exclude=('tests*',)),
url='http://pyro.ai',
author='Uber AI Labs',
author_email='pyro@uber.com',
install_requires=[
'numpy>=1.7',
'scipy>=0.19.0',
'cloudpickle>=0.3.1',
'graphviz>=0.8',
'networkx>=2.0.0',
'torch',
'six>=1.10.0',
],
extras_require={
'notebooks': ['jupyter>=1.0.0'],
'visualization': [
'matplotlib>=1.3',
'visdom>=0.1.4',
'pillow',
],
'test': [
'pytest',
'pytest-cov',
'nbval',
# examples/tutorials
'visdom',
'torchvision',
],
'dev': [
'torchvision',
'flake8',
'yapf',
'isort',
'pytest',
'pytest-xdist',
'nbval',
'nbstripout',
'sphinx',
'sphinx_rtd_theme',
],
},
tests_require=['flake8', 'pytest'],
keywords='machine learning statistics probabilistic programming bayesian modeling pytorch',
license='MIT License',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
# yapf
)