forked from mahan-hosseini/AutoGaitA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.03 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.03 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
# import
from setuptools import setup
import platform
# list of across-platform dependencies
install_requires = [
"customtkinter>=5.2",
"pandas>=2.0",
"numpy>=1.24",
"seaborn>=0.13",
"matplotlib>=3.7",
"scikit-learn>=1.2",
"pingouin>=0.5",
"scipy>=1.11",
"ffmpeg-python>=0.2",
"openpyxl>=3.1",
"pillow>=10.3",
]
# add platform-specific dependencies
if platform.system() == "Darwin":
install_requires.append("pyobjc")
# call setup function
setup(
name="autogaita",
python_requires=">=3.10",
version="0.3.2rc", # rc == release candidate (before release is finished)
author="Mahan Hosseini",
description="Automatic Gait Analysis in Python",
packages=["autogaita", "autogaita.batchrun_scripts"],
include_package_data=True,
package_data={"": ["*.txt", "*.rst", "*.png", "*.icns", "*.ico", "*.json"]},
install_requires=install_requires,
extras_require={"dev": ["pytest", "hypothesis"]},
license="GPLv3",
url="https://github.com/mahan-hosseini/AutoGaitA/",
)