forked from garciadias/Neuroharmony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.6 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (51 loc) · 1.6 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup python package."""
from setuptools import setup
from os import system
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("requirements.txt") as requirements:
requirements = requirements.readlines()
EXTRAS_REQUIRE = {
'tests': [
'pytest',
'pytest-cov'],
'docs': [
'sphinx',
'sphinx-gallery',
'sphinx_rtd_theme',
'numpydoc',
'matplotlib'
]
}
setup(
author_email="rafaelagd@gmail.com",
author="Rafael Garcia-Dias",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="A tool to perform Freesurfer volume Harminization in unseen scanner.",
entry_points={"console_scripts": ["mriqc-run=neuroharmony.models.mriqc:main"]},
extras_require=EXTRAS_REQUIRE,
include_package_data=True,
install_requires=requirements,
keywords="Harminization, MRI, data science",
license="MIT license",
long_description=readme,
name="Neuroharmony",
package_dir={"neuroharmony": "neuroharmony"},
packages=["neuroharmony"],
python_requires='>=3.6',
test_suite="pytest",
url="https://github.com/garciadias/Neuroharmony",
version="0.1.1",
zip_safe=False,
)
system("pip install git+https://github.com/ncullen93/neuroCombat")