File: pyproject.toml

package info (click to toggle)
python-multipletau 0.4.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 404 kB
  • sloc: python: 1,485; makefile: 17
file content (47 lines) | stat: -rw-r--r-- 1,303 bytes parent folder | download
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
[build-system]
requires = [
    # for version management
    "setuptools>=45", "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"

[project]
name = "multipletau"
authors = [
    # In alphabetical order.
    {name = "André Scholich"},
    {name = "Alexandre Detiste"},
    {name = "Chris Lamb"},
    {name = "Pascal Hebbeker"},
    {name = "Paul Müller"},
]
maintainers = [
    {name = "Paul Müller", email="dev@craban.de"},
]
description = "A multiple-tau algorithm for Python/NumPy"
readme = "README.rst"
requires-python = ">=3.6, <4"
keywords = ["multiple tau",
            "fluorescence correlation spectroscopy"]
classifiers = [
    'Operating System :: OS Independent',
    'Programming Language :: Python :: 3',
    'Topic :: Scientific/Engineering :: Visualization',
    'Intended Audience :: Science/Research',
]
license = {text = "BSD (3 clause)"}
dependencies = [
    "numpy>=1.5.1",
  ]
dynamic = ["version"]

[project.urls]
source = "https://github.com/FCS-analysis/multipletau"
tracker = "https://github.com/FCS-analysis/multipletau/issues"
documentation = "https://multipletau.readthedocs.io/en/stable/"
changelog = "https://multipletau.readthedocs.io/en/stable/#changelog"


[tool.setuptools_scm]
write_to = "multipletau/_version.py"
version_scheme = "post-release"