-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
57 lines (55 loc) · 1.62 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
# Get the long description from the README file
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="massspecgym",
packages=find_packages(),
version="1.1.1",
description="MassSpecGym: A benchmark for the discovery and identification of molecules",
author="MassSpecGym developers",
author_email="roman.bushuiev@uochb.cas.cz",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"torch==2.3.0",
"pytorch-lightning==2.2.5",
"torchmetrics==1.4.0",
"torch_geometric==2.5.3",
"tokenizers==0.19.1",
"numpy==1.24.4",
"rdkit==2023.9.4",
"myopic-mces==1.0.0",
"matchms==0.26.2",
"wandb==0.17.0",
"huggingface-hub==0.23.2",
"seaborn==0.13.2",
"chemparse==0.3.1",
"chemformula==1.3.1",
"networkx==3.3",
"selfies==2.1.2"
],
extras_require={
"dev": [
"black==24.4.2",
"pytest==8.2.1",
"pytest-cov==5.0.0",
],
"notebooks": [
"jupyter==1.0.0",
"ipywidgets==8.1.3",
"h5py==3.11.0",
"scikit-learn==1.5.0",
"pandarallel==1.6.5",
],
},
python_requires='>=3.11',
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)