-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
76 lines (68 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Copyright (C) 2022 - 2024. The openhdemg community.
# To read the content of the README or description file
from pathlib import Path
# To install required dependencies
from setuptools import setup
import openhdemg
INSTALL_REQUIRES = [
"customtkinter==5.2.2",
"CTkMessagebox==2.7",
"matplotlib==3.9.3",
"numpy<=2.2.0",
"openpyxl==3.1.5",
"pandas==2.2.3",
"pandastable==0.13.1",
"scipy<=1.14.1",
"seaborn==0.13.2",
"scikit-learn==1.5.2",
]
PACKAGES = [
"openhdemg",
"openhdemg.library",
"openhdemg.library.decomposed_test_files",
"openhdemg.compatibility",
"openhdemg.gui",
"openhdemg.gui.gui_files",
"openhdemg.gui.gui_modules",
"openhdemg.tests",
"openhdemg.tests.fixtures",
"openhdemg.tests.integration",
"openhdemg.tests.unit",
]
CLASSIFIERS = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
this_directory = Path(__file__).parent
long_descr = (this_directory / "README.md").read_text()
if __name__ == "__main__":
setup(
name="openhdemg",
maintainer="Giacomo Valli",
maintainer_email="giacomo.valli@unibs.it",
description="Open-source analysis of High-Density EMG data",
long_description=long_descr,
long_description_content_type="text/markdown",
license="GPL-3.0",
project_urls={
"Documentation": "https://giacomovalli.com/openhdemg",
"Release Notes": "https://giacomovalli.com/openhdemg/what%27s-new",
"Source Code": "https://github.com/GiacomoValliPhD/openhdemg",
"Bug Tracker": "https://github.com/GiacomoValliPhD/openhdemg/issues",
},
version=openhdemg.__version__,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
packages=PACKAGES,
package_data={"openhdemg": ["*"]},
classifiers=CLASSIFIERS,
)