-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 950 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mteapy"
version = "0.0.1"
authors = [
{name = "Xavier Benedicto Molina", email = "[email protected]"},
{name = "Miguel Ponce de Leon", email = "[email protected]"}
]
description = "Python library for Metabolic Task Enrichment Analysis"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"pandas",
"cobra>=0.25.0",
"argparse",
"rich_argparse",
"boolean.py",
"pytest"
]
[project.scripts]
run-mtea = "mteapy.cmds.run_mtea:main"
[project.urls]
"Homepage" = "https://github.com/bsc-life/mteapy"
"Bug Tracker" = "https://github.com/bsc-life/mteapy/issues"
[project.optional-dependencies]
test = ["pytest"]