-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.38 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
[build-system]
# This is the default table, so is here for clarity only
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "scikit-diveMove"
description = "Python interface to R package diveMove"
readme = "README.rst"
license = {file = "LICENSE"}
authors = [{name = "Sebastian Luque", email = "spluque@gmail.com"}]
requires-python = ">=3.10"
dependencies = ["ahrs",
"allantools",
"bottleneck",
"docutils>=0.3",
"matplotlib>=3.0",
"netcdf4>=1.5",
"numpy>=2.0",
"pandas>=2.0",
"rpy2>=3.5",
"scikit-learn>=0.20.0",
"scipy>=1.14",
"statsmodels>=0.11",
"xarray>=2024"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Scientific/Engineering"]
keywords = ["animal behaviour",
"biology",
"behavioural ecology",
"diving",
"diving behaviour"]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["ipykernel>=6.20", "jupyter-sphinx", "pydata-sphinx-theme"]
test = ["pytest", "coverage"]
[project.urls]
Repository = "https://github.com/spluque/scikit-diveMove"
[tool.setuptools.packages.find]
include = ["skdiveMove", "skdiveMove.*"]
[tool.setuptools.dynamic]
version = {attr = "skdiveMove.__version__"}