-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
43 lines (32 loc) · 970 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
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
import json
with open('pyVS/pkg_info.json') as fp:
_info = json.load(fp)
setup(
# Application name:
name="pyVoxelStats",
# Version number (initial):
version=_info['version'],
# Application author details:
author="Sulantha Mathotaarachchi",
author_email="[email protected]",
# Packages
packages=find_packages(),
package_data = {'pyVS': ['data/*', 'pkg_info.json']},
# Include additional files into the package
include_package_data=True,
# Details
url=_info['url'],
#
# license="LICENSE.txt",
description="Python implementation of the VoxelStats toolbox for neuroimage analysis",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=[
"nibabel", "pandas", "numpy", "scipy", "numexpr",
"pyminc",
"statsmodels",
"rpy2",
"ipyparallel",
],
)