-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = [
"setuptools>=64", "setuptools_scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "phconvert"
dynamic = ["version", ]
authors = [
{name="Antonino Ingargiola", email="[email protected]"},
{name="Paul David Harris", email="[email protected]"}
]
maintainers = [{name="Paul David Harris", email="[email protected]"}, ]
description = "Convert Beker&Hickl, PicoQuant and other formats to Photon-HDF5."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = [
"single-molecule FRET",
"smFRET",
"biophysics",
"file-format",
"HDF5",
"Photon-HDF5"
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
requires-python = ">= 3.6"
dependencies = [
"numpy>=1.19",
"tables",
'importlib_resources;python_version<="3.10"'
]
[project.urls]
Homepage = "http://photon-hdf5.github.io/phconvert/"
Documentation = "https://phconvert.readthedocs.io/en/latest/"
Repositories = "https://github.com/Photon-HDF5/phconvert"
Issues = "https://github.com/Photon-HDF5/phconvert/issues"
[tool.setuptools.packages.find]
include = ['phconvert*']
[tool.setuptools.package-data]
"phconvert.specs" = ["*.json",]
"phconvert.v04.specs" = ["*.json",]
[tool.setuptools_scm]
version_scheme = "post-release"
write_to = "phconvert/_version.py"