-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 735 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 735 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
import setuptools
from glob import glob
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="randomised_filtering",
version="0.0.1",
author="Antonia Hain, Daniel Jorgens",
author_email="antoniabhain@gmail.com, djoerch@gmail.com",
description="Randomised tractogram filtering.",
long_description=long_description,
long_description_content_type="text/markdown",
url="github.com/djoerch/randomised_filtering",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
install_requires=[
"dipy>=1.3.0",
"nibabel>=3.0.2",
"numpy>=1.18.0",
"tqdm",
"matplotlib",
],
scripts=glob("scripts/*.py"),
)