forked from CoAxLab/pycombat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (29 loc) · 934 Bytes
/
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
DISTNAME = "pycombat"
DESCRIPTION = "Python version of data harmonisation technique Combat "
VERSION = "0.13"
AUTHOR = "CoAxLab"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/CoAxLab/pycombat"
DOWNLOAD_URL = URL + "/archive/" + VERSION + ".tar.gz"
if __name__ == "__main__":
setuptools.setup(
name=DISTNAME,
version=VERSION,
packages=[DISTNAME] ,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url=URL,
license='MIT',
install_requires=['numpy','pandas']
)