-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·148 lines (130 loc) · 5.69 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/env python3
'''
This script creates the MethodicConfigurator pip python package
This file is part of Ardupilot methodic configurator. https://github.com/ArduPilot/MethodicConfigurator
SPDX-FileCopyrightText: 2024 Amilcar do Carmo Lucas <[email protected]>
SPDX-License-Identifier: GPL-3.0-or-later
'''
import shutil
import os
from setuptools import setup
from setuptools import find_packages
from MethodicConfigurator.version import VERSION
dev_requirements = [
'ruff',
'pre-commit',
'pytest',
'pytest-cov',
'coverage',
'mock',
# Add any other development requirements here
]
extra_scripts = [
'MethodicConfigurator/annotate_params.py',
'MethodicConfigurator/extract_param_defaults.py',
'MethodicConfigurator/param_pid_adjustment_update.py'
]
PRJ_URL = "https://github.com/ArduPilot/MethodicConfigurator"
for file in extra_scripts:
os.chmod(file, 0o755)
os.chmod("MethodicConfigurator/ardupilot_methodic_configurator.py", 0o755)
# Read the long description from the README file
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
# Use Absolute links so that the pyPI page renders correctly
long_description = long_description.replace("(USERMANUAL.md", f"({PRJ_URL}/blob/master/USERMANUAL.md")
long_description = long_description.replace("(QUICKSTART.md", f"({PRJ_URL}/blob/master/QUICKSTART.md")
long_description = long_description.replace("(CONTRIBUTING.md", f"({PRJ_URL}/blob/master/CONTRIBUTING.md")
long_description = long_description.replace("(ARCHITECTURE.md", f"({PRJ_URL}/blob/master/ARCHITECTURE.md")
long_description = long_description.replace("(CODE_OF_CONDUCT.md", f"({PRJ_URL}/blob/master/CODE_OF_CONDUCT.md")
long_description = long_description.replace("(LICENSE.md", f"({PRJ_URL}/blob/master/LICENSE.md")
long_description = long_description.replace("(USECASES.md", f"({PRJ_URL}/blob/master/USECASES.md")
long_description = long_description.replace("(credits/CREDITS.md", f"({PRJ_URL}/blob/master/credits/CREDITS.md")
long_description = long_description.replace("images/App_screenshot1.png",
f"{PRJ_URL}/raw/master/images/App_screenshot1.png")
# So that the vehicle_templates directory contents get correctly read by the MANIFEST.in file
TEMPLATES_SRC_DIR = 'vehicle_templates'
TEMPLATES_DST_DIR = 'MethodicConfigurator/vehicle_templates'
if os.path.exists(TEMPLATES_DST_DIR):
shutil.rmtree(TEMPLATES_DST_DIR)
try:
shutil.copytree(TEMPLATES_SRC_DIR, TEMPLATES_DST_DIR)
print("Directory tree copied successfully.")
except FileNotFoundError:
print(f"Error: Source directory '{TEMPLATES_SRC_DIR}' does not exist.")
except FileExistsError:
print(f"The destination directory '{TEMPLATES_DST_DIR}' already exists and cannot be overwritten.")
except PermissionError:
print(f"Permission denied when trying to copy '{TEMPLATES_SRC_DIR}' to '{TEMPLATES_DST_DIR}'. " \
"Please check your permissions.")
except Exception as e: # pylint: disable=broad-except
print(f"An unexpected error occurred while copying the directory tree: {e}")
setup(
name='MethodicConfigurator',
version=VERSION,
zip_safe=True,
description='A clear configuration sequence for ArduPilot vehicles',
long_description=long_description,
long_description_content_type='text/markdown',
url=PRJ_URL,
author='Amilcar do Carmo Lucas',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'defusedxml',
'matplotlib',
'numpy',
'platformdirs',
'pymavlink',
'pyserial',
'pillow',
'setuptools',
'requests',
],
extras_require={
'dev': dev_requirements,
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
],
# Add the license
license='GPLv3',
python_requires='>=3.6',
keywords=['ArduPilot', 'Configuration', 'SCM', 'Methodic', 'ArduCopter', 'ArduPlane', 'ArduRover', 'ArduSub'],
#package_dir={"": "MethodicConfigurator"}, this unfortunatly breaks the build
include_package_data=True,
scripts=extra_scripts,
# Specify entry points for command-line scripts
entry_points={
'console_scripts': [
'ardupilot_methodic_configurator=MethodicConfigurator.ardupilot_methodic_configurator:main',
'extract_param_defaults=MethodicConfigurator.extract_param_defaults:main',
'annotate_params=MethodicConfigurator.annotate_params:main',
'param_pid_adjustment_update=MethodicConfigurator.param_pid_adjustment_update:main',
],
},
project_urls={
'Homepage': PRJ_URL,
'Documentation': f'{PRJ_URL}/blob/master/USERMANUAL.md',
'Bug Tracker': f'{PRJ_URL}/issues',
'Source Code': PRJ_URL,
'Forum': 'https://discuss.ardupilot.org/t/new-ardupilot-methodic-configurator-gui/115038/',
'Chat': 'https://discord.com/invite/ArduPilot',
'Download': f'{PRJ_URL}/releases',
},
)
# Remove the symbolic link now that the setup is done
if os.path.exists(TEMPLATES_DST_DIR):
shutil.rmtree(TEMPLATES_DST_DIR)