-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.44 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup, find_packages
from config.version import __version__
this_directory = Path(__file__).parent
with open(this_directory / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="li_group_center",
version=__version__,
description="Group Center Tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/a645162/group-center-client",
author="Haomin Kong",
author_email="a645162@gmail.com",
license="GPLv3",
packages=find_packages(
exclude=[
"test",
]
),
python_requires=">=3.6",
install_requires=[
"urllib3", "requests",
"termcolor >= 1.0.0",
"colorama >= 0.4.0; platform_system == 'Windows'",
"windows-curses >= 2.2.0; platform_system == 'Windows'",
],
entry_points={
"console_scripts": [
"group_center_machine_user = group_center.client.machine.user_manager:main",
"group_center_ssh_helper = group_center.client.machine.ssh_helper:main",
"group_center_user_message = group_center.client.user.shell_message:main",
"group_center_terminal = group_center.user.windows_terminal:main",
"torch_ddp_port = group_center.tools.dl.ddp_port:main",
"rtsp_viewer = group_center.tools.rtsp.rtsp_viewer:main",
],
},
)