Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![Contributors](https://img.shields.io/github/contributors/iosefa/PyForestScan.svg?label=contributors)](https://github.com/iosefa/PyForestScan/graphs/contributors)
[![Tests](https://img.shields.io/github/actions/workflow/status/iosefa/PyForestScan/main.yml?branch=main)](https://github.com/iosefa/PyForestScan/actions/workflows/main.yml)
[![Coverage](https://img.shields.io/codecov/c/github/iosefa/PyForestScan/main)](https://codecov.io/gh/iosefa/PyForestScan)
[![PyPI Downloads](https://static.pepy.tech/badge/pyforestscan)](https://pepy.tech/projects/pyforestscan)

**Calculate Forest Structural Metrics from lidar point clouds in Python**

Expand Down
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pyforestscan",
version="0.2.4",
version="0.3.0",
author="Joseph Emile Honour Percival",
author_email="ipercival@gmail.com",
description="Analyzing forest structure using aerial LiDAR data",
Expand All @@ -21,18 +21,18 @@
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
python_requires=">=3.10",
python_requires=">=3.11",
install_requires=[
'requests>=2.32.3',
'requests>=2.32.4',
'rasterio>=1.3.11',
'pdal>=3.4.5',
'geopandas>=1.0.1',
'pyproj>=3.6.1',
'shapely>=2.0.6',
'pandas>=2.2.2',
'numpy>=2.1.1',
'matplotlib>=3.9.2',
'scipy>=1.14.1',
'geopandas>=1.1.1',
'pyproj>=3.7.1',
'shapely>=2.1.1',
'pandas>=2.3.0',
'numpy>=2.3.1',
'matplotlib>=3.10.3',
'scipy>=1.16.0',
],
extras_require={
'dev': [
Expand Down
Loading