-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (32 loc) · 961 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
from setuptools import setup, find_packages
NAME = 'bonesis'
VERSION = '9999'
setup(name=NAME,
version=VERSION,
description = "Synthesis of Most Permissive Boolean Networks",
license_files = ('LICENSE.txt', 'Licence_CeCILL_V2.1-fr.txt'),
install_requires = [
"boolean.py",
"clingo>=5.5",
"colomoto_jupyter",
"mpbn>=3.3",
"networkx",
"numpy",
"pandas",
"scipy",
],
entry_points = {
"console_scripts": [
"bonesis-utils=bonesis.cli:main_utils",
"bonesis-reprogramming=bonesis.cli:main_reprogramming",
"bonesis-attractors=bonesis.cli:main_attractors",
],
},
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="computational systems biology",
packages = find_packages(),
package_data = {"bonesis0": ['*.cfg']}
)