-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 802 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 802 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
from setuptools import setup, find_packages
setup(
name='labsync',
version='0.4.1',
description='Toolkit for research on lab servers',
author='Zhouxing Shi',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'watchdog>=0.10',
'flask>=2.3',
'appdirs>=1.4',
'oslo.concurrency>=4.2',
'pydrive2>=1.15',
'httplib2>=0.22',
'google_api_core==2.11.1',
'google_auth>=2.25.0',
'gpustat>=1.1',
'termcolor>=2.4.0',
'huggingface_hub>=0.33.0',
'datasets>=4.0.0'
],
url='https://github.com/shizhouxing/labsync',
entry_points={
'console_scripts': [
'lab = labsync.main:cli_main'
],
},
python_requires=">=3.10",
license='GNU GPL v3',
)