-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 1.69 KB
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "scalcs"
version = "1.1.0"
description = "Pure-Python Q-matrix formalism for ion channel kinetics"
authors = [
{ name = "Remigijus Lape", email = "r.lape@ucl.ac.uk" },
{ name = "Christoph Schmidt-Hieber" },
]
license = "GPL-2.0-only"
license-files = ["LICENSE.MD"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"dcio>=0.1.0", # the shared record layer
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
gui = ["PyQt5>=5.12"]
dev = ["pytest>=7", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/DCPROGS/SCALCS"
Repository = "https://github.com/DCPROGS/SCALCS"
Issues = "https://github.com/DCPROGS/SCALCS/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["scalcs*"]
# Non-Python files that belong in the distribution. Without this the wheel
# contains the modules only, and the icon, the About-box animation and the
# sample mechanism are missing from an installed copy.
[tool.setuptools.package-data]
"scalcs.gui" = ["*.ICO", "*.gif"]
"scalcs.samples" = ["*.yaml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]