-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (31 loc) · 1.04 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
from distutils.core import setup
setup(
name = 'PcmPy',
packages = ['PcmPy'],
version = '1.1.0',
license='MIT',
description = 'Pattern Component Modeling of multivariate activity patterns',
author = 'Jörn Diedrichsen',
author_email = '[email protected]',
url = 'https://github.com/DiedrichsenLab/PCMPy',
download_url = 'https://github.com/DiedrichsenLab/PcmPy/archive/refs/tags/v1.1.0.tar.gz',
keywords = ['statistics', 'imaging analysis', 'multivariate'],
install_requires=[
'numpy',
'pandas',
'scipy',
'matplotlib',
'seaborn'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
python_requires='>=3.6'
)