-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
53 lines (46 loc) · 1.65 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pysb-pkpd"
dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = [
"pysb>=1.15.0",
]
authors = [
{name = "Blake A. Wilson", email = "blakeaw1102@gmail.com"},
]
description = "PySB add-on providing domain-specific macros and models for pharmacological PK/PD modeling."
readme = "README.md"
keywords = ["pysb", "biomodels", "reaction models", "systems biology", "pharmacokinetics", "pharmacodynamics", "pkpd", "qsp", "qst"]
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/blakeaw/pysb-pkpd"
Issues = "https://github.com/blakeaw/pysb-pkpd/issues"
Changelog = "https://github.com/blakeaw/pysb-pkpd/blob/main/CHANGELOG.md"
# Find namespace package
[tool.setuptools.packages.find]
where = ["src"]
include = ["pysb.pkpd", "pysb.pkpd.macros", "pysb.pkpd.models", "pysb.pkpd.pk_models"]
namespaces = true
# Set the dynamic version
[tool.setuptools.dynamic]
version = {attr = "pysb.pkpd.__version__"}