forked from Jfortin1/neuroCombat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 693 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 693 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
author="Jean-Philippe Fortin, Nick Cullen, Tim Robert-Fitzgerald",
author_email='fortin946@gmail.com,',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
description="ComBat algorithm for harmonizing multi-site imaging data",
license="MIT license",
url="https://github.com/Jfortin1/neuroCombat",
project_urls={
"Github": "https://github.com/Jfortin1/neuroCombat",
},
name='neuroCombat',
packages=['neuroCombat'],
version='0.2.12',
zip_safe=False,
)