Skip to content

Commit

Permalink
switch from setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaillard committed Dec 17, 2024
1 parent 6bc8b7b commit 5b8d83e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
27 changes: 27 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "green"
version = "0.1"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"

dependencies = [
"torch>=1.9",
"geotorch==0.3.0",
"mne==1.8.0",
"lightning==2.4.0",
"scikit-learn",
"pandas"
]
authors = [
{name = "Joseph Paillard", email = "joseph.paillard@roche.com"},
]

[project.optional-dependencies]
test = [
"pytest"
]
7 changes: 0 additions & 7 deletions requirements.txt

This file was deleted.

10 changes: 0 additions & 10 deletions setup.cfg

This file was deleted.

6 changes: 0 additions & 6 deletions setup.py

This file was deleted.

0 comments on commit 5b8d83e

Please sign in to comment.