-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
36 lines (32 loc) · 1.06 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
[project]
name = "thunor"
dynamic = ["version"]
description = "Dose response curve and drug induced proliferation (DIP) rate fits and visualisation"
authors = [
{name = "Alex Lubbock", email = "[email protected]"},
]
requires-python = ">=3.10"
dependencies = ['numpy', 'scipy', 'pandas', 'plotly', 'seaborn',
'tables']
readme = "README.md"
license = {text = "GPL-3.0-only"}
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
[project.optional-dependencies]
test = ['pytest', 'nbval', 'django', 'nbformat', 'flake8',
'codecov', 'pytest-cov']
docs = ['sphinx', 'sphinx-rtd-theme', 'mock', 'nbsphinx',
'ipykernel']
[project.urls]
Homepage = "https://www.thunor.net"
[build-system]
requires = ["setuptools", "versioneer"]
build-backend = "setuptools.build_meta"
[tool.flake8]
extend-ignore = "E203"
max-line-length = 88