Skip to content

Commit

Permalink
moving setup to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Aug 15, 2024
1 parent c8a0c66 commit e04983b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 37 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,35 @@ requires = [
]
build-backend = "setuptools.build_meta"

[project]
name = "festim"
authors = [
{name = "Remi Delaporte-Mathurin", email = "[email protected]"},
]
description = "Finite element simulations of hydrogen transport"
license = {file = "LICENSE"}
classifiers = [
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dynamic = ["version"]

[project.optional-dependencies]
tests = ["pytest>=5.4.3"]

[project.urls]
Repository = "https://github.com/festim-dev/FESTIM"
Issues = "https://github.com/festim-dev/FESTIM/issues"

[tool.setuptools_scm]
write_to = "festim/_version.py"
33 changes: 0 additions & 33 deletions setup.cfg

This file was deleted.

4 changes: 0 additions & 4 deletions setup.py

This file was deleted.

0 comments on commit e04983b

Please sign in to comment.