-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·75 lines (68 loc) · 2.17 KB
/
setup.py
File metadata and controls
executable file
·75 lines (68 loc) · 2.17 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from setuptools import setup, find_packages
path_to_readme = "README.md"
if path_to_readme is not None:
with open(path_to_readme, "r") as desc_file:
long_description = desc_file.read()
else:
long_description = ''
path_to_version_file = "./structguy/_version.py"
with open(path_to_version_file) as version_file:
exec(version_file.read().strip())
setup(
name="StructGuy",
version=__version__,
description="Structur-Guided Variant Effect Prediction",
long_description=long_description,
long_description_content_type="text/markdown",
license='LGPL-2.1',
author="Alexander Gress",
maintainer="Alexander Gress",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
packages=find_packages(),
setup_requires=['setuptools_scm'],
include_package_data=True,
install_requires=[
"scikit-learn==1.5.0",
"numpy==1.26.4",
"xgboost==3.1.1",
"torch==2.8.0",
"fgclustering==2.0.2",
"shap==0.48.0",
"supertree==0.5.5",
"matplotlib==3.10.6",
#"dask>=2025.5.0",
#"dask-cudf-cu11>=24.6.0",
#"dask-cuda"
],
package_data = {
"": [
'resources/psic/psic.c',
'resources/psic/Makefile',
'resources/psic/Blosum62.txt',
'resources/psic/psic_wrapper.py'
]
},
exclude_package_data={
'': [
'resources/search_db_settings.conf'
]
},
python_requires=">=3.8, <4",
keywords="bioinformatics",
entry_points={
"console_scripts": [
"structguy = structguy.structguy_main:main",
"split_fasta_db = structguy.sequence_util:split_fasta_db"
],
},
)