-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jumplion"
requires-python = ">=3.12"
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [
{ name="Yingxue Fu", email="yingxue.fu@stjude.org" },
]
description = "A software for DIA-MS quantification"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.scripts]
jumplion = "jumplion.main:main"
jumplion-gui = "jumplion.gui.index_tabs:main"
[project.urls]
"Homepage" = "https://github.com/yingxue-fu/jumplion"
"Issues" = "https://github.com/yingxue-fu/jumplion/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"jumplion.gui.assets" = ["*"]
"jumplion.ext" = ["*"]
[tool.setuptools.packages.find]
include = ["jumplion*"] # Only include jumplion package
exclude = ["tests*"] # Explicitly exclude nbs
[tool.setuptools.dynamic]
version = {attr = "jumplion.__version__"}
dependencies = {file = ["requirements/requirements.txt"]}
optional-dependencies.gui = { file = ["requirements/requirements_gui.txt"] }