-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (34 loc) · 1.04 KB
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
from setuptools import setup, find_packages
setup(
name="BLIMMP",
version="0.1.6",
author="Neha Sontakke",
license="MIT",
packages=find_packages(),
install_requires=[
"pandas>=1.5",
"numpy>=1.23",
"numba",
"scipy",
],
package_data={
"BLIMMP_Scripts": [
# Module graphs, shipped zipped and extracted on first use.
# module_detection.py hard-fails if this is missing, so a rename
# here can no longer silently produce all-zero results.
"Graph_Dependencies/KEGG_Graphs_Generated_March26.zip",
"Graph_Dependencies/*.json",
"Graph_Dependencies/MODULE_ALL_NEIGHBOR_DATA/*.json",
"Data_Dependencies/*.txt",
"Data_Dependencies/*.json",
"Data_Dependencies/ATB_Taxonomy_Frequency/*.tsv",
]
},
include_package_data=True,
python_requires=">=3.10",
entry_points={
"console_scripts": [
"BLIMMP=BLIMMP_Scripts.module_detection:main",
],
},
)