-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (37 loc) · 943 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
34
35
36
37
38
39
40
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "Peak-A-Py"
version = "0.1.0"
dependencies = [
"pandas",
"numpy",
"scikit-learn",
"matplotlib",
"networkx",
"lmfit",
"scipy",
"biopython",
]
authors = [
{name = "William Rosenbaum", email = "william.rosenbaum@umu.se"},
{name = "Pär Larsson", email = "par.larsson@umu.se"},
]
description = "Fragment Analysis package in python!"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["Fragment analysis", "Fragman", "Peak finding", "electrophoresis", "FSA files"]
[project.optional-dependencies]
dev = ["black", "pylint"]
[project.urls]
Homepage = "https://github.com/Clinical-Genomics-Umea/ladder_map"