-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
32 lines (25 loc) · 1.02 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
import setuptools
from distutils.core import setup
with open("psychrnn/_version.py", "r") as f:
exec(f.read())
with open("README.md", "r") as f:
long_desc = f.read()
setup(
name='PsychRNN',
version=__version__,
packages=['psychrnn', 'psychrnn.tasks', 'psychrnn.backend', 'psychrnn.backend.models'],
license='MIT',
long_description=long_desc,
long_description_content_type='text/markdown',
author="Daniel Ehrlich, Jasmine Stone, Alex Atanasov, David Brandfonbrener",
author_email="[email protected]",
description="Easy-to-use package for the modeling and analysis of neural network dynamics, directed towards cognitive neuroscientists.",
keywords="neuroscience, modeling, analysis, neural networks",
url="https://github.com/murraylab/PsychRNN",
project_urls={
'Documentation': 'https://psychrnn.readthedocs.io/',
'Mailing List': 'https://www.freelists.org/list/psychrnn',
},
install_requires=['tensorflow'],
python_requires='>=2.7, !=3.0, !=3.1, !=3.2, !=3.3'
)