-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (29 loc) · 972 Bytes
/
setup.py
File metadata and controls
39 lines (29 loc) · 972 Bytes
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
#!/usr/bin/env python
import versioneer
from setuptools import setup, find_packages
NAME = "lrg_omics"
install_requires = []
scripts = [
"scripts/lrg_run_maxquant.py",
"scripts/lrg_metabolomics_metadata_from_worklist.py",
"scripts/lrg_thermo_worklist_parser.py",
"scripts/lrg_fake_maxquant.sh",
"scripts/lrg_get_maxquant_qc_data_from_path.py",
"scripts/lrg_get_rawtools_qc_data_from_path.py",
"scripts/lrg_upload_raw_file_to_qc_pipeline.py",
"scripts/lrg_mzML2mzMLb.py",
]
config = {
"description": "LRG multi-omics toolkit",
"author": "Soren Wacker",
"url": "https://github.com/soerendip",
"download_url": f"https://github.com/soerendip/{NAME}",
"author_email": "swacker@ucalgary.ca",
"version": versioneer.get_version(),
"cmdclass": versioneer.get_cmdclass(),
"install_requires": install_requires,
"packages": find_packages(),
"scripts": scripts,
"name": f"{NAME}",
}
setup(**config)