forked from thenlevy/pyMaBoSS
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (31 loc) · 1.07 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
from sys import version_info
from setuptools import setup, find_packages
optional_contextlib = []
if version_info[0] < 3:
optional_contextlib.append("contextlib2")
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "description.rst").read_text()
setup(name='maboss',
version="0.8.9",
packages=find_packages(exclude=["test"]),
py_modules = ["maboss_setup"],
author="Vincent Noël, Loic Paulevé, Aurelien Naldi and Nicolas Levy",
author_email="[email protected]",
description="A python and jupyter API for the MaBoSS software",
long_description=long_description,
long_description_content_type='text/x-rst',
url="https://maboss.curie.fr",
install_requires = [
"colomoto_jupyter >=0.4.10",
"pyparsing",
"ipywidgets",
"matplotlib",
"pandas",
"scikit-learn",
"networkx",
"cmaboss>=1.0.0b25"
] + optional_contextlib,
scripts=['scripts/MBSS_FormatTable.py', 'scripts/UpPMaBoSS.py']
)