-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (40 loc) · 1.19 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
ld = fh.read()
setup(
name="ionmob",
version="0.2.2",
description="predict peptide collision-cross sections / ion-mobilities",
packages=[
"ionmob",
"ionmob.models",
"ionmob.pretrained_models",
"ionmob.preprocess",
"ionmob.utilities",
"tests",
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
long_description=ld,
long_description_content_type="text/markdown",
python_requires=">=3.8",
install_requires=[
"tensorflow >=2.7",
"pyopenms >= 1.0",
"pandas >=1.1",
"pyarrow >= 0.5",
"scipy >=1.5",
"scikit-learn >=1.0.0",
"h5py >=3.0.0",
"biopython >=1.5",
"matplotlib >=3.0",
],
)