-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.18 KB
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
44
[project]
name = "fermi-cref"
version = "0.2.0"
description = "the FitnEss, the Relatedness, and other MetrIcs"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{ name = "Lorenzo Buffa", email = "lorenzo.buffa@cref.it" },
{ name = "Daniele Cirulli", email = "daniele.cirulli@cref.it" },
{ name = "Aurelio Patelli", email = "aurelio.patelli@cref.it" },
{ name = "Riccardo Piombo", email = "riccardo.piombo@cref.it" },
{ name = "Filippo Santoro", email = "filippo.santoro@cref.it" },
{ name = "Valeria Secchini", email = "valeria.secchini@cref.it" },
{ name = "Matteo Straccamore", email = "matteo.straccamore@cref.it" },
]
dependencies = [
"numpy>=1.24",
"pandas>=1.5",
"matplotlib>=3.5",
"scipy>=1.9",
"networkx>=2.6",
"bokeh>=2.4",
"tqdm>=4.64",
"scikit-learn>=1.2",
"bicm>=3.4.0",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/EFC-data/fermi"
"Bug Tracker" = "https://github.com/EFC-data/fermi/issues"