-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
22 lines (20 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='PyTorch-ProbGraph',
version='0.0.1',
description='Hierarchical Probabilistic Graphical Models in PyTorch',
long_description=long_description,
author='Korbinian Poeppel, Hendrik Elvers',
author_email='[email protected], [email protected]',
url='https://github.com/kpoeppel/pytorch_probgraph/',
packages=['pytorch_probgraph'],
install_requires=['torch', 'numpy', 'matplotlib', 'tqdm',
'sphinx_rtd_theme', 'sphinx', 'setuptools'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)