-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.21 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
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "candycrunch"
version = "0.6.2"
description = "Package for predicting glycan structure from LC-MS/MS data"
readme = "README.md"
authors = [
{name = "Daniel Bojar", email = "daniel.bojar@gu.se"},
]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"glycowork[ml]~=1.8.0",
"requests",
"regex",
"networkx",
"scipy",
"torch~=2.1",
"torchmetrics",
"numpy_indexed",
"seaborn",
"pandas",
"statsmodels",
"pymzml",
"pyteomics",
"lxml",
"torchvision",
"openpyxl",
"tabulate",
"matplotlib",
"pytest"
]
[project.urls]
Homepage = "https://github.com/BojarLab/CandyCrunch"
[project.scripts]
candycrunch_predict = "candycrunch.cli:main"
[tool.setuptools]
include-package-data = false
packages = ["candycrunch"]
[tool.setuptools.package-data]
candycrunch = ["*.csv", "*.pkl", "*.jpg", "*.pt"]
[tool.setuptools.exclude-package-data]
"*" = ["tests*", "*.ipynb"]
[tool.setuptools.package-dir]
candycrunch = "candycrunch"