-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1017 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
41
42
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "minud"
version = "1.0.3"
description = "MINuD: a tool for the analysis of Mitochondrial Nucleoids Distribution"
readme = "README.md"
requires-python = ">=3"
license = {file = "LICENSE"}
keywords = ["flapjack", "data", "experimental", "analysis", "synthetic biology"]
authors = [
{ name="Gonzalo Vidal", email="[email protected]" }
]
maintainers = [
{name = "Gonzalo Vidal", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'scipy',
'pandas',
'matplotlib',
'seaborn',
'scikit-image',
'openpyxl'
]
[project.optional-dependencies]
test = [
"pytest < 5.0.0",
"pytest-cov[all]"
]
[project.urls]
"Homepage" = "https://github.com/RudgeLab/MiNuD"
"Bug Tracker" = "https://github.com/RudgeLab/MiNuD/issues"