-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
58 lines (52 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup python package."""
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = [
"numpy>=1.16.1",
"pandas>=1.1.4",
"scikit_learn>=0.22.2.post1",
"scipy>=1.2.0",
"tqdm>=4.31.1",
"joblib>=0.14.1",
"requests>=2.25.1",
]
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",
"models": "neuroharmony.models",
"neuroCombat": "neuroharmony.models.neuroCombat",
},
packages=find_packages(),
python_requires=">=3.6",
test_suite="pytest",
url="https://github.com/garciadias/Neuroharmony",
version="0.1.13",
zip_safe=False,
)