-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.1 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
import setuptools
from os.path import join
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="eddy-squeeze", # Replace with your own username
version="1.0.9",
author="Kevin Cho",
author_email="[email protected]",
description="Visualize extra information from FSL 6.0.1 eddy outputs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pnlbwh/eddy-squeeze",
packages=setuptools.find_packages(),
package_data={'eddy_squeeze' :[
join('html_templates', '*'),
]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.7',
install_requires=['tabulate>=0.8.7',
'matplotlib>=3.0.3',
'pandas>=0.24',
'numpy>=1.1',
'nibabel>=3.1',
'Jinja2>=2.0',
'pathlib2>=2.3',
'seaborn>=0.9'],
scripts=['scripts/eddy_squeeze']
)