-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 710 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 710 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="hpc_management_system",
version="1.0.0",
description="HPC集群管理桌面应用程序",
author="HPC Team",
author_email="example@example.com",
packages=find_packages(),
install_requires=[
"PyQt5>=5.15.0",
"paramiko>=3.5.0",
"pexpect>=4.9.0",
"bcrypt>=4.3.0",
"cryptography>=44.0.0",
],
entry_points={
'console_scripts': [
'hpc_management=my_hpc_app.main:main',
],
},
include_package_data=True,
package_data={
'my_hpc_app': ['resources/*'],
},
python_requires='>=3.8',
)