-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
44 lines (38 loc) · 1020 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
44
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["figeno", "figeno.data", "figeno.cli", "figeno.gui"]
[project]
name = 'figeno'
version = "1.6.4"
description = 'Package for generating genomics figures.'
readme = 'README.md'
authors = [
{ name = 'Etienne Sollier'},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = '>=3.7'
dependencies = [
"numpy>=1.10.0,<2.0",
"pandas>=1.3.0",
"matplotlib>=3.4.3",
"importlib-resources>=5.0.0",
"pysam>=0.16.0",
"pyBigWig>=0.3.18",
"vcfpy>=0.13.5",
"cooler>=0.9.1",
"Flask>=2.2.5",
"filedialpy>=1.2.0",
"pywebview>=4.4.1"
]
[project.scripts]
figeno = "figeno.cli.cli:main"
[project.urls]
"Homepage" = "https://github.com/CompEpigen/figeno"