-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 801 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 801 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
28
29
30
31
32
""" Setup config
"""
from setuptools import find_packages, setup
setup(
name="bifrost",
version="0.1",
author="Andrew Berger",
author_email="a5b@stanford.edu",
description="Template building and cross-modal registration.",
url="https://github.com/ClandininLab/bifrost",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"numpy",
"scipy",
"nibabel",
"pynrrd",
"Pillow",
"antspyx",
"scikit-learn",
"scikit-image",
"voxelmorph @ git+https://github.com/ClandininLab/voxelmorph.git@ed92ff23455c8b8942a0c38ee8988223b71410c5",
"snakemake==7.30.2",
],
entry_points={
"console_scripts": [
"bifrost=bifrost.cli.bifrost:main",
]
},
)