Skip to content

Commit

Permalink
Migrate from setup.py to pyproject.toml for up-to-date project config…
Browse files Browse the repository at this point in the history
…uration
  • Loading branch information
alexandra-valeanu committed Oct 21, 2024
1 parent 234f2a5 commit 60b7c70
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 36 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "kinex"
version = "1.0.2"
description = "A python package to compute kinase scoring and enrichment"
authors = [
{ name = "Alexandra Valeanu", email = "valeanualexandra17@gmail.com" }
]
requires-python = ">=3.8"
dependencies = [
"scipy >= 1.10.0",
"numpy >= 1.19.5",
"nbformat >= 4.2.0",
"pandas",
"statsmodels",
"plotly",
"scikit-learn",
"umap-learn",
"importlib-resources"
]

[project.optional-dependencies]
dev = [
"sphinx",
"furo"
]

[tool.setuptools]
package-dir = { "" = "src" }
36 changes: 0 additions & 36 deletions setup.py

This file was deleted.

0 comments on commit 60b7c70

Please sign in to comment.