-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
54 lines (52 loc) · 1.18 KB
/
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
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "molnetpack"
version = "1.1.10.post1"
authors = [
{ name="Yuhui Hong" },
{ name="Sujun Li" },
{ name="Christopher J Welch" },
{ name="Shane Tichy" },
{ name="Yuzhen Ye" },
{ name="Haixu Tang" }
]
maintainers = [
{ name="Yuhui Hong", email="[email protected]" },
]
description = "3DMolMS: prediction of tandem mass spectra from 3D molecular conformations"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"absl-py",
"beautifulsoup4",
"filelock",
"gdown",
"grpcio",
"importlib-metadata",
"lxml",
"markdown",
"markupsafe",
"molmass",
"numpy",
"pandas",
"protobuf",
"pysocks",
"pyteomics",
"soupsieve",
"tensorboard",
"PyYAML",
"rdkit",
"matplotlib",
"pillow"
]
[project.urls]
Homepage = "https://github.com/JosieHong/3DMolMS/"
Issues = "https://github.com/JosieHong/3DMolMS/issues"
Changelog = "https://github.com/JosieHong/3DMolMS/blob/main/CHANGE_LOG.md"