forked from Kelvin-Hsu/kelfi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 850 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
30
31
from setuptools import setup, find_packages
CLASSIFIERS = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GPLv3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 1",
"Programming Language :: Python :: 3.7",
]
setup(
name="kelfi",
version="1.0",
author="Kelvin Hsu",
author_email="[email protected]",
description="Kernel Embedding Likelihood-Free Inference",
keywords=["stochastic", "optimization"],
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"ghalton",
"tensorflow",
],
)