Skip to content

Commit 7790bac

Browse files
committed
setup
1 parent 730e3da commit 7790bac

2 files changed

Lines changed: 18 additions & 13 deletions

File tree

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[metadata]
2-
description-file = README.md
2+
description-file = README.md
3+
license_files=LICENSE

setup.py

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
from distutils.core import setup
22
setup(
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

Comments
 (0)