-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.81 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cpforager"
version = "1.2.0"
authors = [{name="Adrien Brunel", email="adrien.brunel.pro@protonmail.com" }]
maintainers = [{name="Adrien Brunel", email="adrien.brunel.pro@protonmail.com" }]
description = "Python package to handle data gathered from biologgers (GPS, TDR, AXY) attached to central-place foraging seabirds. The idea is to make movement ecology data a bit easier to process."
keywords = ["movement-ecology", "biologging", "seabird", "central-place", "foraging", "gps", "tdr", "accelerometer", "movement", "ecology", "telemetry"]
readme = "PyPI_README.md"
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Natural Language :: English",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
dependencies = [
"numpy>=2.2.5",
"pandas>=2.2.3",
"suntime>=1.3.2",
"matplotlib>=3.10.3",
"branca>=0.8.1",
"cartopy>=0.24.0",
"folium>=0.19.5",
"scipy>=1.16.1",
"pytz>=2025.2",
]
license = "AGPL-3.0"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/AdrienBrunel/cpforager"
Repository = "https://github.com/AdrienBrunel/cpforager"
Documentation = "https://adrienbrunel.github.io/cpforager/"
Issues = "https://github.com/AdrienBrunel/cpforager/issues"
# git tag
# git tag -a vx.x.x -m "version x.x.x : minor bug fixes"
# git push --tags
# python3 -m pip install --upgrade build
# python3 -m build
# python3 -m pip install --upgrade twine
# python3 -m twine upload --repository pypi dist/*