36 lines
910 B
Python
36 lines
910 B
Python
"""
|
|
安装脚本
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="broad_spectrum_parallel",
|
|
version="1.0.0",
|
|
description="并行广谱抗菌预测API",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"torch",
|
|
"pandas>=1.3.0",
|
|
"numpy>=1.20.0",
|
|
"scipy>=1.7.0",
|
|
"scikit-learn>=1.0.0",
|
|
"xgboost>=1.5.0",
|
|
"openpyxl>=3.0.0",
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'predict_antimicrobial=broad_spectrum_parallel.cli:main',
|
|
],
|
|
},
|
|
python_requires=">=3.8",
|
|
author="Your Name",
|
|
author_email="your.email@example.com",
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Science/Research",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
],
|
|
) |