-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
45 lines (43 loc) · 1.5 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
#with open("requirements.txt", "r") as fh:
# requirements = fh.read().splitlines()
setuptools.setup(
name="fw_heudiconv",
version="0.4.3",
author="Tinashe M. Tapera, Matt Cieslak, Harsha Kethineni",
author_email="[email protected]",
description="Use heudiconv-like heuristics for BIDS curation on flywheel",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PennBBL/fw_heudiconv",
packages=setuptools.find_packages(),
install_requires=[
"flywheel-sdk~=14.6.5",
"pandas",
"bids-validator",
"validators",
"pathvalidate",
"pytest",
"pytest-cov",
"nibabel",
"heudiconv"
],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'fw-heudiconv-curate=fw_heudiconv.cli.curate:main',
'fw-heudiconv-export=fw_heudiconv.cli.export:main',
'fw-heudiconv-tabulate=fw_heudiconv.cli.tabulate:main',
'fw-heudiconv-clear=fw_heudiconv.cli.clear:main',
'fw-heudiconv-validate=fw_heudiconv.cli.validate:main',
'fw-heudiconv-meta=fw_heudiconv.cli.meta:main',
'fw-heudiconv-reproin=fw_heudiconv.cli.reproin_check:main'
],
}
)