-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (32 loc) · 913 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
32
33
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: skip-file
from setuptools import find_packages, setup
def read_file(filename: str) -> str:
with open(filename, encoding="utf-8") as f:
return f.read().strip()
packages = find_packages(".", exclude=["tests"])
version = read_file("VERSION")
setup(
name='fcest',
version=version,
author='Onno P. Kampman',
author_email='onno.kampman@gmail.com',
description='Methods for estimation of functional connectivity',
license='Apache License 2.0',
url='https://github.com/OnnoKampman/FCEst',
packages=packages,
install_requires=[
'gpflow>=2.6.0',
'numpy',
'pandas==1.5.3',
'rpy2==3.4.5',
'scipy',
'statsmodels',
'tensorflow>=2.10,<=2.15',
'tensorflow-probability<=0.23',
'tf-keras',
],
python_requires='>=3.10',
zip_safe=False
)