-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
53 lines (48 loc) · 1.58 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(here, "ms2deepscore", "__version__.py")) as f:
exec(f.read(), version)
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="ms2deepscore",
version=version["__version__"],
description="Deep learning similarity measure for comparing MS/MS spectra.",
long_description=readme,
long_description_content_type='text/markdown',
author="Florian Huber (as part of the ms2deepscore developer team)",
author_email="[email protected]",
url="https://github.com/iomega/ms2deepscore",
packages=find_packages(),
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
test_suite="tests",
python_requires='>=3.9',
install_requires=[
"matchms>=0.18.0",
"numba",
"numpy>=1.20.3,<2.0",
"pandas",
"scikit-learn",
"tensorboard",
"torch",
"torchvision",
"tqdm",
"matplotlib==3.7.2"
],
extras_require={"train": ["rdkit"],
"dev": ["bump2version",
"isort>=4.2.5,<5",
"ruff",
"pytest",
"pytest-cov",
"sphinx>=3.0.0,!=3.2.0,<4.0.0",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc",
"yapf",],
}
)