-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
57 lines (51 loc) · 1.63 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
#!/usr/bin/env python
"""
ibaqpy is a python package to compute IBAQ values from peptide identifications and protein database
"""
from setuptools import setup, find_packages
version = "0.0.3"
def readme():
with open("README.md") as f:
return f.read()
setup(
name="ibaqpy",
version=version,
description="Python package to compute intensity base absolute expression values",
author="Yasset Perez-Riverol",
author_email="[email protected]",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="Proteomics, Label-free, absolute quantification",
url="https://github.com/bigbio/ibaqpy/",
download_url="https://github.com/bigbio/ibaqpy/",
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=[
"pyopenms",
"scikit-learn",
"numpy",
"click",
"pandas",
"matplotlib",
"qnorm",
"seaborn",
"typing_extensions",
"combat",
],
entry_points={"console_scripts": ["ibaqpy=ibaqpy.ibaqpyc:main"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
)