forked from NTBEL/pharmacodynamic-response-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.46 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pharmacodynamic"
dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = []
authors = [
{name = "Blake A. Wilson", email = "[email protected]"},
]
description = "Collection of pharmacodynamic response models."
readme = "README.md"
keywords = ['response model', 'dose-response', 'receptor-response']
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 :: Pharma-Modelers",
"Topic :: Pharmalogical Modeling :: Exposure-Response",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: MIT",
# 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/pharmacodynamic-response-models"
Issues = "https://github.com/Borealis-BioModeling/pharmacodynamic-response-models/issues"
Changelog = "https://github.com/Borealis-BioModeling/pharmacodynamic-response-models/CHANGELOG.md"
# Set the dynamic version
[tool.setuptools.dynamic]
version = {attr = "pharmacodynamic.__version__"}