forked from dilinwang820/Stein-Variational-Gradient-Descent
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·31 lines (29 loc) · 1.11 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
import setuptools
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
name="simpleSVGD",
author="Lars Gebraad",
author_email="lars.gebraad@erdw.ethz.ch",
description="A very basic implementation of SVGD, based on https://github.com/dilinwang820/Stein-Variational-Gradient-Descent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/larsgeb/simpleSVGD",
project_urls={
"Bug Tracker": "https://github.com/larsgeb/simpleSVGD/issues",
},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src", exclude=["test"]),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=["numpy", "tqdm", "scipy", "matplotlib", "versioneer"],
extras_require={"dev": ["black", "pytest"]},
)