-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
34 lines (30 loc) · 924 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gelpy"
version = "0.0.4"
authors = [
{ name = "Christoph Karfusehr", email = "c.karfusehr@gmail.com" }
]
description = "This project is deprecated and no longer maintained. A small python package used for gel electrophoresis visualization, fitting and analysis"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
]
dependencies = [
"numpy>=1.24.3",
"scipy>=1.10.1",
"scikit-image>=0.21.0",
"scikit-learn>=1.2.2",
"matplotlib>=3.7.1",
"seaborn>=0.12.2",
"ipykernel>=6.19.2",
"pandas>=2.0.2"
]
[project.urls]
homepage = "https://github.com/ckarfusehr/GelPy"
bug-tracker = "https://github.com/ckarfusehr/GelPy/issues"