11from distutils .core import setup
22setup (
3- name = 'PCMPy' ,
4- packages = ['PCMPy ' ],
5- version = '0.2' ,
6- license = 'MIT' ,
3+ name = 'PcmPy' ,
4+ packages = ['PcmPy ' ],
5+ version = '0.9.1' ,
6+ license = 'MIT' ,
77 description = 'Modeling of multivariate activity patterns' ,
88 author = 'Jörn Diedrichsen' ,
9- author_email = 'joern.dierichsen @googlemail.com' ,
10- url = 'https://github.com/DiedrichsenLab/PCMPy' ,
11- download_url = 'https://github.com/DiedrichsenLab/PCMPy /archive/v_01. tar.gz' ,
9+ author_email = 'joern.diedrichsen @googlemail.com' ,
10+ url = 'https://github.com/DiedrichsenLab/PCMPy' ,
11+ download_url = 'https://github.com/DiedrichsenLab/PcmPy /archive/refs/tags/v0.9.1. tar.gz' ,
1212 keywords = ['statistics' , 'imaging analysis' , 'multivariate' ],
13- install_requires = [ # I get to this in a second
14- 'validators' ,
15- 'beautifulsoup4' ,
16- ],
13+ install_requires = [
14+ 'numpy' ,
15+ 'pandas' ,
16+ 'scipy' ,
17+ 'matplotlib' ,
18+ 'seaborn' ],
1719 classifiers = [
1820 'Development Status :: 4 - Beta' ,
21+ 'Intended Audience :: Science/Research' ,
1922 'Intended Audience :: Developers' ,
2023 'Topic :: Software Development :: Build Tools' ,
2124 'License :: OSI Approved :: MIT License' ,
2225 'Programming Language :: Python :: 3.6' ,
2326 'Programming Language :: Python :: 3.7' ,
2427 'Programming Language :: Python :: 3.8' ,
25- 'Programming Language :: Python :: 3.9' ,
28+ 'Programming Language :: Python :: 3.9'
2629 ],
30+ python_requires = '>=3.6'
2731)
0 commit comments