-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
28 lines (23 loc) · 996 Bytes
/
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
from setuptools import setup
long_description = '''
**spm1d** is a Python package for <b>one-dimensional Statistical Parametric Mapping<b>.
spm1d uses <b>Random Field Theory</b> expectations regarding the behavior of smooth,
one-dimensional Gaussian fields to make statistical inferences regarding a set of
one-dimensional measurements.
'''
setup(
name = 'spm1d',
version = '0.4.33',
description = 'One-Dimensional Statistical Parametric Mapping',
author = 'Todd Pataky',
author_email = '[email protected]',
url = 'https://github.com/0todd0000/spm1d',
download_url = 'https://github.com/0todd0000/spm1d/archive/master.zip',
packages = ['spm1d'],
package_data = {'spm1d' : ['examples/*.*', 'data/*.*'] },
include_package_data = True,
long_description = long_description,
keywords = ['statistics', 'time series analysis'],
classifiers = [],
install_requires = ["numpy", "scipy", "matplotlib"]
)