-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.4 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
# Call setup function
setup(
name="proteomics_downstream_analysis",
author="Vu Duc Tung",
author_email="tungvuduc@outlook.de",
description="A package for downstream data analysis of proteomics data",
long_description=long_description,
long_description_content_type="text/markdown",
keywords = ["proteomics", "downstream analysis", "data analysis", "data visualization", "mass spectrometry"],
version="0.1.3",
url="https://github.com/vuductung/proteomics-downstream-anlaysis",
packages=find_packages(include=["repos","proteomics_downstream_analysis", "proteomics_downstream_analysis.*"]),
python_requires=">=3.6.1",
install_requires=[
"adjustText",
"goatools",
"gseapy",
"matplotlib",
"matplotlib-venn",
"numba",
"numpy",
"plotly",
"pyarrow",
"pycirclize",
"pyteomics",
"scikit-learn",
"scipy",
"seaborn",
"statsmodels",
"streamlit",
"umap",
"UpSetPlot",
"venn"
]
)