-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
# ******************************************************************************
# * @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
with open("LICENSE.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="stdatalog_core",
version="1.0.0",
author="SRA-ASP",
author_email="matteo.ronchi@st.com",
description="STMicroelectronics High Speed Datalog python package",
long_description=long_description,
long_description_content_type="text\\markdown",
include_package_data=True,
url="https://github.com/STMicroelectronics/stdatalog_core",
packages=setuptools.find_packages(),
package_dir={'stdatalog_core': 'stdatalog_core'},
license='BSD 3-clause',
classifiers=[
"License :: BSD License (BSD-3-Clause)",
"Operating System :: Microsoft :: Windows",
"Operating System :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Embedded Systems"
],
install_requires=[
"stdatalog_pnpl",
"numpy==1.26.4",
"pyserial",
"pandas",
"fastparquet==2024.5.0",
"h5py==3.12.1",
"colorama",
"click",
"matplotlib",
"setuptools",
"plotly"
]
)