forked from big-data-lab-team/sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 721 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 721 Bytes
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
from setuptools import setup
VERSION = "0.1.3"
DEPS = [
"boutiques",
"pybids",
"pyspark"
]
setup(name="simtools",
version=VERSION,
description="A set of MapReduce programs to process brain images",
url="http://github.com/big-data-lab-team/sim",
author="Tristan Glatard, Valerie Hayot-Sasson, Lalet Scaria",
author_email="tristan.glatard@concordia.ca",
license="GPL3.0",
packages=["sim"],
include_package_data=True,
test_suite="nose.collector",
tests_require=["nose"],
setup_requires=DEPS,
install_requires=DEPS,
entry_points = {
"console_scripts": [
"spark_bids=sim.spark_bids:main",
]
})