-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.58 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
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dunderlab-visualizations"
version = "0.7"
description = ""
readme = "README.md"
requires-python = ">=3.6"
license = { text = "BSD-2-Clause" }
authors = [
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
]
maintainers = [
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Hardware Drivers",
]
dependencies = [
"python-circos",
"matplotlib>=3.5.3",
"numpy",
"mne",
"biopython",
]
[project.urls]
"Repository" = "https://github.com/dunderlab/python-dunderlab.visualizations"
[tool.setuptools.packages.find]
where = ["."]
include = ["dunderlab.visualizations"]