forked from SPARCED/SPARCED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.55 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>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SPARCED"
version = "2.0"
description = "A simple and efficient pipeline for constructing, merging, expanding and simulating large-scale, single-cell mechanistic models."
authors = [
{ name = "Cemal Erdem", email = "[email protected]" },
{ name = "Aurore Amrit", email = "[email protected]" },
{ name = "Jonah Huggins", email = "[email protected]" },
{ name = "Arnab Mutsuddy", email = "[email protected]" },
{ name = "Marc Birtwistle", email = "[email protected]" }
]
license = {text = "GPL-2.0"}
dependencies = [
"h5py==3.11",
"numpy==1.26.0",
"scipy==1.12.0",
"sympy==1.12",
"pandas==2.2.1",
"matplotlib==3.8.0",
"python-libsbml==5.18.0",
"swig==4.0.0",
"amici==0.11.12",
"antimony==2.12.0.1",
"pyyaml==6.0.1",
"mpi4py==3.1.6",
"phrasedml==1.3.0",
"lxml==5.3.0"
]
requires-python = ">=3.10"
keywords = ["mechanistic modeling", "single-cell models", "simulation", "systems biology"]
readme = {file = "README.md", content-type = "text/markdown"}
[project.urls]
Homepage = "https://github.com/JonahRileyHuggins/SPARCED/"
Repository = "https://github.com/JonahRileyHuggins/SPARCED"
[project.scripts]
sparced = "cli.cli:main"
[tool.setuptools]
# Specify the src directory as a package
packages = { find = { where = ["src"] } }
[tool.setuptools.package-data]
"src" = ["**/*.yaml", "**/*.json", "**/*.ini"]
[tool.setuptools.exclude-package-data]
"*" = ["*.tmp", "*.log"]