-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.24 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.24 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
# setup script for the package
from setuptools import setup, find_packages
setup(
name="beechunker",
version="0.1.0",
description="Intelligent chunk size optimization for BeeGFS using Machine Learning",
author="BeeChunker Team",
packages=find_packages(),
install_requires=[
"numpy>=1.20.0",
"pandas>=1.3.0",
"scikit-learn>=1.0.0",
"joblib>=1.1.0",
"minisom>=2.2.9",
"matplotlib>=3.4.0",
"watchdog>=2.1.0",
"click>=8.0.0",
"scipy>=1.7.0",
],
entry_points={
"console_scripts": [
"beechunker-monitor=beechunker.cli.monitor_cli:main",
"beechunker-optimizer=beechunker.cli.optimizer_cli:main",
"beechunker-train=beechunker.cli.trainer_cli:main",
"beechunker=beechunker.cli.monitor_cli:main", # Default command
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Topic :: System :: Filesystems",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)