forked from NehaSontakk/BLIMMP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 926 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 926 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
from setuptools import setup, find_packages
setup(
name="BLIMMP",
version="0.1.0",
author="Neha Sontakke",
license="MIT",
packages=find_packages(),
install_requires=[
"pandas>=1.5",
"numpy>=1.23",
"numba",
"scipy",
],
package_data={
"BLIMMP_Scripts": [
"Graph_Dependencies/KEGG_Module_Graphs.zip",
"Graph_Dependencies/KEGG_Module_Equations_Jan26.json",
"Graph_Dependencies/module_ko_reaction.json",
"Graph_Dependencies/MODULE_ALL_NEIGHBOR_DATA/*",
"Data_Dependencies/ATB_Taxonomy_Frequency/*",
"Data_Dependencies/ko_list.txt",
"Data_Dependencies/module_freq.txt",
]
},
include_package_data=True,
python_requires=">=3.10",
entry_points={
"console_scripts": [
"BLIMMP=BLIMMP_Scripts.module_detection:main",
],
},
)