forked from tritemio/FRETBursts
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
62 lines (55 loc) · 1.71 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
61
62
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=6.0",
"cython>=3.0",
"pybind11>=2.12",
"numpy>=1.19",
]
build-backend = "setuptools.build_meta"
[project]
name = "fretbursts"
dynamic = ["version", ]
authors = [
{name="Antonio Ingargiola", email="[email protected]"},
{name="Paul David Harris", email="[email protected]"}]
description = "Burst analysis toolkit for single and multi-spot smFRET data."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["single-molecule FRET","smFRET", "burst-analysis", "biophysics"]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"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.7"
dependencies = [
"importlib_metadata;python_version<='3.9'",
"numpy>=1.19",
"scipy>=1.2",
"pandas >= 0.23",
"seaborn>=0.11.1",
"tables>=3.5",
"lmfit>=1.0.1",
"phconvert>=0.8"
]
[project.urls]
Homepage = "http://opensmfs.github.io/FRETBursts/"
Documentation = "https://fretbursts.readthedocs.io/en/latest/"
Issues = "https://github.com/OpenSMFS/FRETBursts/"
Repository = "https://github.com/OpenSMFS/FRETBursts/issues"
[project.optional-dependencies]
scientific = ["jupyter", "matplotlib>=3.0.1"]
gui = ["matplotlib>=3.0.1", "PyQt5"]
[tool.setuptools.packages.find]
include = ['fretbursts*']
[tool.setuptools.package-data]
fretbursts = ["phtools/*.pyx", ]
[tool.setuptools_scm]
version_scheme = "post-release"
[tool.pytest.ini_options]