-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
47 lines (43 loc) · 1.27 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
[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="[email protected]"},
]
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"