-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (30 loc) · 902 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
29
30
31
32
from distutils import sysconfig
from setuptools import setup, Extension, find_packages
import os
import sys
import setuptools
from copy import deepcopy
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyrft',
install_requires=[
'numpy',
'sanssouci',
'matplotlib',
'sklearn',
'scipy',
'scikit-image'
],
version = '0.0.1',
license='MIT',
author='Samuel DAVENPORT',
download_url='https://github.com/sjdavenport/pyrft/',
author_email='samuel.davenport@math.univ-toulouse.fr',
url='https://github.com/sjdavenport/pyrft/',
long_description=long_description,
description='Python Toolbox of Functions for Analysing Random fields',
keywords='Random field Theory, fMRI, Post-hoc inference',
packages=find_packages(),
python_requires='>=3',
)