-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 750 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 750 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
setup(
name='brainsss',
version='0.0.1',
long_description="""
This package performs preprocessing and analysis of
volumetric neural data on sherlock. At its core, brainsss is a wrapper to
interface with Slurm via python. It can handle complex submission of batches of
jobs with job dependencies and makes it easy to pass variables between jobs.
It also has full logging of job progress, output, and errors.
""",
packages=['brainsss'],
include_package_data=True,
install_requires=[
'pyfiglet',
'psutil',
'lxml',
'openpyxl',
'nibabel',
'numpy',
'pandas',
'pytest',
'scipy',
'h5py'
],
)