-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 976 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 976 Bytes
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
from distutils.core import setup
DESCRIPTION = "Branching Gaussian process."
LONG_DESCRIPTION = DESCRIPTION
NAME = "BranchedGP"
AUTHOR = "Alexis Boukouvalas"
AUTHOR_EMAIL = "alexis.boukouvalas@gmail.com"
MAINTAINER = "Alexis Boukouvalas"
MAINTAINER_EMAIL = "alexis.boukouvalas@gmail.com"
DOWNLOAD_URL = 'https://github.com/ManchesterBioinference/BranchedGP'
LICENSE = 'MIT'
VERSION = '2.1'
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=['BranchedGP'],
package_data={},
install_requires=[
"tensorflow>=2.4,<3",
# change to "tensorflow-macos>=2.4,<3", if working on Apple Silicon
"gpflow>=2,<3",
"matplotlib",
"seaborn",
],
python_requires=">=3.5",
)