-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 1.02 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="fsub_extractor",
packages=find_packages(),
version="0.0.1",
description="Software that functionally segments white matter connections to generate task-specific subcomponents of fiber bundles.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Steven Meisler",
author_email="[email protected]",
url="https://github.com/smeisler/fsub_extractor",
download_url="download link you saved (ADD THIS LATER)",
keywords=["dwi", "fmri", "white-matter-segmentation"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
# python_requires='>=3.9', # TODO: UPDATE HERE!
# install_requires=["dipy"]. # TODO: UPDATE HERE!
)