-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·71 lines (68 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import setuptools
import ion_networks._version
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name=ion_networks._version.__project__,
version=ion_networks._version.__version__,
license=ion_networks._version.__license__,
description="Analysis of LC-[...]-MSMS data with ion-networks",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=ion_networks._version.__author__,
author_email="[email protected]",
url="https://github.com/swillems/ion_networks",
project_urls={
"Publication": "https://www.biorxiv.org/content/10.1101/726273v2",
},
keywords=[
"MS",
"Mass spectrometry",
"Proteomics",
"DIA",
"Data-independent acquisition",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"ion_networks=ion_networks.main:main",
"unicityF=ion_networks.interface:CLI.annotate"
],
"gui_scripts": [
"ion_networks_gui=ion_networks.interface:run_ion_network_gui"
],
},
install_requires=[
"numpy",
"numexpr",
"matplotlib==3.2.2",
"PySimpleGUI",
"pandas",
"click",
"scipy",
"scikit-learn",
"h5py",
"pyteomics",
"numba",
"pyqt5-sip",
"pyqtwebengine",
],
extras_require={
# MS2PIP only installable on Linux, manual installation needed for OSX
'ms2pip': [
'ms2pip'
]
},
python_requires=">=3.6,<4",
)