-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pysb-units"
dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = [
"pysb>=1.15.0",
"sympy>=1.11.1",
"astropy>=5.3.4",
]
authors = [
{name = "Blake A. Wilson", email = "[email protected]"},
]
description = "PySB add-on providing utilities to add units to models."
readme = "README.md"
keywords = ["pysb", "biomodels", "reaction models", "systems biology"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Bio-Modelers",
"Topic :: Biological Modeling :: Model Building",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: BSD 2-Clause",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Repository = "https://github.com/Borealis-BioModeling/pysb-units"
Issues = "https://github.com/Borealis-BioModeling/pysb-units/issues"
Changelog = "https://github.com/Borealis-BioModeling/pysb-units/blob/master/CHANGELOG.md"
# Find namespace package
[tool.setuptools.packages.find]
where = ["src"]
include = ["pysb.units",
"pysb.units.core",
"pysb.units.unitdefs",
"pysb.units.examples",
"pysb.units.examples.bngwiki_simple",
"pysb.units.examples.jnk3_no_ask1",
]
namespaces = true
# Set the dynamic version
[tool.setuptools.dynamic]
version = {attr = "pysb.units.__version__"}