-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 926 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
23
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name="dpm",
version="0.1",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['docutils>=0.3',
'torch',
'numpy',
'matplotlib',
'seaborn'],
# metadata to display on PyPI
author="Bill Watson",
author_email="nextbillyonair@gmail.com",
description="Differentiable Probabilistic Models",
keywords="dpm probability models neural networks",
url="https://github.com/nextBillyonair/DPM", # project home page, if any
project_urls={
# "Documentation": "https://docs.example.com/HelloWorld/",
"Source Code": "https://github.com/nextBillyonair/DPM",
},
# could also include long_description, download_url, etc.
)