-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.64 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 = "rltmod"
dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = [
"pysb>=1.15.0",
"pysb-pkpd>=0.3.2",
"pysb-units>=0.4.0",
"numpy",
]
authors = [
{name = "Blake A. Wilson", email = "[email protected]"},
]
description = "Semi-mechanistic radioligand therapy (RLT) PK/PD model encoded in PySB."
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/radioligand-therapy-model"
Issues = "https://github.com/Borealis-BioModeling/radioligand-therapy-model/issues"
Changelog = "https://github.com/Borealis-BioModeling/radioligand-therapy-model/blob/main/CHANGELOG.md"
# Set the dynamic version
[tool.setuptools.dynamic]
version = {attr = "rltmod.__version__"}
[tool.setuptools.packages.find]
namespaces = false # to disable scanning PEP 420 namespaces (true by default)