forked from secondmind-labs/markovflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (53 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['markovflow',
'markovflow.kernels',
'markovflow.likelihoods',
'markovflow.models']
package_data = \
{'': ['*']}
install_requires = \
['banded-matrices==0.0.6',
'google-auth==1.16.0',
'gpflow>=2.0.5,<3.0.0',
'importlib_metadata>=1.6,<2.0',
'numpy>=1.18.0,<2.0.0',
'scipy==1.4.1',
'setuptools>=41.0.0,<42.0.0',
'tensorflow-probability==0.11.0',
'tensorflow==2.2.1']
with open("VERSION") as file:
version = file.read().strip()
with open("README.md") as file:
long_description = file.read()
setup(
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
name="markovflow",
description="Markovflow: GP time series library",
author="Markovflow Team",
author_email="markovflow@secondmind.ai",
maintainer=None,
maintainer_email=None,
url=None,
packages=packages,
package_data=package_data,
install_requires=install_requires,
python_requires=">=3.7,<4.0",
license="Apache License 2.0",
keywords="Deep-Gaussian-processes",
project_urls={
"Source on GitHub": "https://github.com/secondmind-labs/markovflow",
"Documentation": "https://secondmind-labs.github.io/markovflow/",
},
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",
],
)