-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 982 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 982 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
from setuptools import setup
setup(
name="hyperit",
version="v1.0.0",
author="Edoardo Chidichimo",
author_email="ec750@cam.ac.uk",
description="Information-Theoretic Tools for Social Neuroscience",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/EdoardoChidichimo/HyperIT",
packages=["hyperit"],
include_package_data=True,
install_requires=[
'numpy',
'scipy',
'mne',
'matplotlib',
'Pillow',
'tqdm',
'jpype1',
'phyid @ git+https://github.com/Imperial-MIND-lab/integrated-info-decomp.git'
],
dependency_links=[
'https://github.com/EdoardoChidichimo/HyperIT/tarball/master#egg=hyperit-v1.0.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: BSD-3-Clause License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)