-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 949 Bytes
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
45
46
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "netmedpy"
version = "0.2.0.1"
description = "A Python package for network medicine analysis"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.8"
authors = [
{ name="Andres Aldana" },
{ name="Michael Sebek" },
{ name="Gordana Ispirova" },
{ name="Rodrigo Dorantes-Gilardi" },
{ name="Giulia Menichetti" },
]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"seaborn",
"scipy",
"networkx"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/menicgiulia/NetMedPy" # Adding homepage from setup.py
[project.optional-dependencies]
interactive = [
"jupyter",
"ipython",
"notebook",
"ipykernel"
]
[tool.setuptools]
packages = ["netmedpy"]