-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.25 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "merrin"
version = "2.1.0"
authors = [
{ name="Kerian Thuillier", email="kerian.thuillier@irisa.fr" },
]
description = "MERRIN: MEtabolic Regulation Rule INference."
keywords = [
"Answer Set Programming",
"Flux Balance Analysis",
"Boolean Network",
"Regulatory Rules",
"Omics data"
]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"merrinasp@git+https://github.com/kthuillier/merrinasp >= 1.1.0",
"clingo >=5.6.1",
"pandas",
"numpy",
"python-libsbml"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
]
[project.urls]
Homepage = "https://github.com/bioasp/merrin"
Repository = "https://github.com/bioasp/merrin"
"Bug Tracker" = "https://github.com/bioasp/merrin/issues"
[project.scripts]
merrin = "merrin.app:main"
[tool.setuptools.package-data]
merrin = [
"py.typed",
"asp/model/learn.lp",
"asp/model/learn_from_trace.lp"
]
[tool.setuptools.packages.find]
where = ["src"]