forked from secondmind-labs/GPflux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_namespace_packages, setup
requirements = [
"gpflow>=2.1",
"numpy",
"scipy",
"tensorflow-probability>=0.12.0",
"tensorflow>=2.4.0",
]
with open("README.md", "r") as file:
long_description = file.read()
with open("VERSION", "r") as file:
version = file.read().strip()
setup(
name="gpflux",
version=version,
author="Secondmind Labs",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
description="GPflux: Deep GP library",
license="Apache License 2.0",
keywords="Deep-Gaussian-processes",
install_requires=requirements,
packages=find_namespace_packages(include=["gpflux*"]),
package_data={"gpflux": ["py.typed"]},
project_urls={
"Source on GitHub": "https://github.com/secondmind-labs/GPflux",
"Documentation": "https://secondmind-labs.github.io/GPflux/",
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)