-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (31 loc) · 946 Bytes
/
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
[project]
name = "ABRpresto"
description = "Algorithm for algorithmic ABR thresholding by cross-correlation of resampled subaverage"
requires-python = ">=3.7"
license = {text = "Proprietary (not open source)"}
authors = [
{name = "Luke Shaheen", email="Luke.Shaheen@regeneron.com"},
{name = "Buran Consulting, LLC", email="info@bradburan.com"}
]
maintainers = [
{name = "Luke Shaheen", email="Luke.Shaheen@regeneron.com"},
{name = "Buran Consulting, LLC", email="info@bradburan.com"}
]
dependencies = [
"numpy >=1.16.4",
"scipy >=1.2.1",
"pandas >=0.24.2",
"matplotlib >=3.0.0",
"setuptools_scm",
"cftsdata",
]
dynamic = ["version"]
[project.scripts]
ABRpresto = "ABRpresto.main:main_process"
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ABRpresto"]
[tool.setuptools_scm]
write_to = "ABRpresto/_version.py"