-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as fp:
install_requires = fp.read().splitlines()
install_requires = [i for i in install_requires if 'http' not in i]
setup(
name="OHBM whole-brain modelling course",
version="0.0",
author="Davide Momi, Joana Cabral, John Griffiths",
author_email="[email protected]",
description="Whole-brain, Connectome-based Models of Brain Dynamics: From Principles to Applications",
keywords="OHBM2k23, Whole-brain Dynamics, Connectomics, Neuroimaging, fMRI, EEG, fNIRS, Machine Learning",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires = install_requires,
url='https://griffithslab.github.io/OHBM_whole_brain_modelling_course',
license="BSD (3-clause)",
entry_points={},#{"console_scripts": ["eegnb=eegnb.cli.__main__:main"]},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)