-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 847 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
[project]
name = "pyoncoprint"
version = "0.2.6"
description = "PyOncoPrint"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
authors = [
{name = "Jeongbin Park", email = "jeongbin.park@pusan.ac.kr"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
]
dependencies = [
"numpy",
"pandas",
"matplotlib",
]
[project.urls]
Homepage = "https://pnucolab.com"
Repository = "https://github.com/pnucolab/pyoncoprint"
[tool.setuptools]
packages = ["pyoncoprint"]
[tool.setuptools.package-data]
"*" = ["*.tsv", "*.ipynb"]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-napoleon",
]