-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (58 loc) · 2.23 KB
/
Copy pathsetup.py
File metadata and controls
62 lines (58 loc) · 2.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# ******************************************************************************
# * @attention
# *
# * Copyright (c) 2022 STMicroelectronics.
# * All rights reserved.
# *
# * This software is licensed under terms that can be found in the LICENSE file
# * in the root directory of this software component.
# * If no LICENSE file comes with this software, it is provided AS-IS.
# *
# *
# ******************************************************************************
#
import setuptools
import os
with open("LICENSE.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="stdatalog_gui",
version="1.4.0",
author="SRA-ASP",
author_email="matteo.ronchi@st.com",
description="STMicroelectronics UI Toolkit based on DTDL and PySide6.",
long_description=long_description,
long_description_content_type="text\\markdown",
include_package_data=True,
url="https://github.com/STMicroelectronics/stdatalog_gui",
packages=setuptools.find_packages(),
package_dir={'stdatalog_gui': 'stdatalog_gui'},
license='BSD 3-clause',
classifiers=[
"License :: BSD License (BSD-3-Clause)",
"Operating System :: Microsoft :: Windows",
"Operating System :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Embedded Systems"
],
install_requires=[
"stdatalog_pnpl==1.4.0",
"stdatalog_core==1.4.0",
"stdatalog_dtk==1.4.0",
"numpy==2.3.4",
"pyqtgraph==0.13.7",
"setuptools<81",
"pillow==12.2.0",
"pyaudio==0.2.14; platform_system != 'Linux'",
"PySide6==6.10.0; platform_system == 'Windows'",
"PySide6==6.10.0; platform_system == 'Linux' and platform_machine != 'aarch64'",
"PySide6==6.8.0.2; platform_system == 'Linux' and platform_machine == 'aarch64'",
"PySide6==6.9.0; platform_system == 'Darwin' and platform_machine == 'arm64'",
"PySide6==6.7.3; platform_system == 'Darwin' and platform_machine == 'x86_64'"
]
)