-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 862 Bytes
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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name="dplpy"
description="Dendrochronology Program Library for Python"
readme="README.md"
version="0.1.5"
authors=[
{name='Tyson Lee Swetnam', email='tswetnam@arizona.edu'},
{name='Ifeoluwa Ale', email='ifeoluwaale@arizona.edu'},
{name='Kevin Anchukaitis', email='kanchukaitis@arizona.edu'},
]
license={file='LICENSE'}
requires-python = '>=3.10'
dependencies=[
"numpy>=1.22.4,<2; python_version<'3.11'",
"numpy>=1.23.2,<2; python_version=='3.11'",
"numpy>=1.26.0,<2; python_version>='3.12'",
"pandas>=2.0.0",
"csaps==1.1.0",
"matplotlib>=3.8.0",
"statsmodels>=0.13.5; python_version>='3.10'",
"statsmodels>=0.14.0; python_version>='3.12'",
"scipy>=1.11.3"
]
[tool.setuptools]
packages = ["dplpy"]