-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (36 loc) · 1.33 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
""" Cona et al. (2014) model of the thalamocortical loop.
Authors:
Christian O'Reilly <[email protected]>
This code is a translation and refactoring of the Matlab code originally
from the authors of the paper:
Filippo Cona, M. Lacanna, Mauro Ursino: A thalamo-cortical neural mass model
for the simulation of brain rhythms during sleep. J. Comput. Neurosci.
37(1): 125-148 (2014)
License: MIT
"""
from pathlib import Path
from setuptools import setup, find_packages
with Path('requirements.txt').open() as f:
requirements = f.read().splitlines()
extras = {}
extras_require = {}
for extra, req_file in extras.items():
with Path(req_file).open() as file:
requirements_extra = file.read().splitlines()
extras_require[extra] = requirements_extra
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='cona2014_nmm',
version='0.1.0',
description='Cona et al. (2014) model of the thalamocortical loop.',
long_description=long_description,
long_description_content_type='text/markdown',
author="Christian O'Reilly",
author_email='[email protected]',
url='https://github.com/lina-usc/cona2024_nmm',
packages=find_packages(),
install_requires=requirements,
extras_require=extras_require,
include_package_data=True,
)