-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·42 lines (39 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8
from setuptools import setup, find_packages
NAME = "mpbn"
VERSION = "9999"
setup(name=NAME,
version=VERSION,
author="Loïc Paulevé",
author_email="[email protected]",
url="https://github.com/bnediction/mpbn",
license="CeCILL",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords='',
description="Simple implementation of Most Permissive Boolean networks",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=[
"boolean.py",
"clingo",
"colomoto_jupyter>=0.8.0",
"numpy",
"biodivine_aeon>=1.0.1",
"scipy",
"tqdm"
],
entry_points={
"console_scripts": [
"mpbn=mpbn.cli:main",
"mpbn-sim=mpbn.cli.sim:main",
],
},
packages = find_packages(),
package_data={'mpbn': ['asplib/*.asp']}
)