Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some keys to the project configuration #17

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
[project]
name = "geoarches"
version = "0.1.0"
license = "CC BY-NC-SA 4.0"
description = "Machine learning package for training, running, and evaluating ML models on geospatial data (specifically climate and weather data)"
authors = [
{name = "ARCHES lab @ INRIA"}
]
readme = "README.md"
requires-python = ">=3.11"
homepage = "https://geoarches.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
requires-python = ">=3.11,<3.13"
dependencies = [
"torch (>=2.5.1,<3.0.0)",
"torchvision (>=0.20.1,<0.21.0)",
Expand Down