Skip to content

Commit

Permalink
setup.py -> pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Dec 13, 2023
1 parent 1bf1b6e commit 81b89ed
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 30 deletions.
43 changes: 43 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "parpe"
version = "0.0.0"
authors = [
{name = "Daniel Weindl", email = "sci@danielweindl.de"},
]
description = "parpe python package"
requires-python = ">=3.9"
license = {text = "MIT"}
dependencies = [
'numpy>=1.18.1',
'termcolor>=1.1.0',
'colorama>=0.4.3',
'petab>=0.1.18',
'amici>=0.20.0',
'h5py>=3.0.0',
'python-libsbml>=5.17.0',
'snakemake>=5.10.0',
'coloredlogs>=15.0',
'scipy',
'matplotlib',
]

[project.optional-dependencies]
test = ["pytest", "pre-commit"]

[project.scripts]
parpe_petab_to_hdf5 = "parpe.hdf5_pe_input:main"

[project.urls]
Documentation = "https://parpe.readthedocs.io/"
Repository = "https://github.com/ICB-DCM/parPE/"

[tool.black]
line-length = 79

[tool.semantic_release]
version_toml = "pyproject.toml:project.version"

30 changes: 0 additions & 30 deletions python/setup.py

This file was deleted.

0 comments on commit 81b89ed

Please sign in to comment.