forked from bitcraze/crazyflie-clients-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
159 lines (135 loc) · 5.27 KB
/
setup.py
File metadata and controls
159 lines (135 loc) · 5.27 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
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
149
150
151
152
153
154
155
156
157
158
159
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from glob import glob
import json
import codecs
import sys
import os
import platform
from gitversion import get_version
if sys.argv[1] in ('build', 'bdist_msi', 'bdist_mac', 'bdist_dmg',
'install_exe'):
from cx_Freeze import setup, Executable # noqa
cxfreeze_options = {
'options': {
'build_exe': {
'includes': ['numpy.core._methods',
'numpy.lib.format',
'pyqtgraph.debug',
'pyqtgraph.ThreadsafeTimer',
'vispy.app.backends._pyqt5',
],
'include_files': [],
'packages': ['asyncio'],
'excludes': ['tkinter']
},
'bdist_mac': {
'iconfile': 'icon-256.icns',
'bundle_name': 'Crazyflie client',
},
},
'executables': [Executable("bin/cfclient", icon='bitcraze.ico')],
}
if platform.system() == 'Darwin':
cxfreeze_options['options']['build_exe']['include_files'] = [
('/usr/local/lib/libusb-1.0.0.dylib', 'libusb.dylib'),
('/usr/local/lib/libSDL2-2.0.0.dylib', 'libSDL2.dylib'),
]
else:
cxfreeze_options = {}
# except:
# pass
if sys.version_info < (3, 6):
raise "must use python 3.6 or greater"
def relative(lst, base=''):
return list(map(lambda x: base + os.path.basename(x), lst))
try:
VERSION = get_version()
except Exception:
VERSION = None
if not VERSION and not os.path.isfile('src/cfclient/version.json'):
sys.stderr.write("Git is required to install from source.\n" +
"Please clone the project with Git or use one of the\n" +
"release packages (either from pip or a binary build).\n")
raise Exception("Git required.")
if not VERSION:
versionfile = open('src/cfclient/version.json', 'r', encoding='utf8')
VERSION = json.loads(versionfile.read())['version']
else:
with codecs.open('src/cfclient/version.json', 'w', encoding='utf8') as f:
f.write(json.dumps({'version': VERSION}))
platform_requires = []
platform_dev_requires = ['pre-commit']
if sys.platform == 'win32' or sys.platform == 'darwin':
platform_requires.extend(['pysdl2~=0.9.6', 'pysdl2-dll==2.0.14.post1'])
if sys.platform == 'win32':
platform_dev_requires.extend(['cx_freeze==5.1.1', 'jinja2==2.10.3'])
# Only install the latest pyqt for Linux and Mac
# On Windows, the latest version that does not have performance problems
# is 5.12
if sys.platform == 'win32':
platform_requires += ['pyqt5~=5.12.0']
else:
platform_requires += ['pyqt5~=5.15.0']
package_data = {
'cfclient.ui': relative(glob('src/cfclient/ui/*.ui')),
'cfclient.ui.tabs': relative(glob('src/cfclient/ui/tabs/*.ui')),
'cfclient.ui.widgets': relative(glob('src/cfclient/ui/widgets/*.ui')),
'cfclient.ui.toolboxes': relative(glob('src/cfclient/ui/toolboxes/*.ui')), # noqa
'cfclient.ui.dialogs': relative(glob('src/cfclient/ui/dialogs/*.ui')),
'cfclient': relative(glob('src/cfclient/configs/*.json'), 'configs/') + # noqa
relative(glob('src/cfclient/configs/input/*.json'), 'configs/input/') + # noqa
relative(glob('src/cfclient/configs/log/*.json'), 'configs/log/') + # noqa
relative(glob('src/cfclient/resources/*'), 'resources/') + # noqa
relative(glob('src/cfclient/ui/icons/*.png'), 'ui/icons/'), # noqa
'': ['README.md']
}
data_files = [
('third_party', glob('src/cfclient/third_party/*')),
]
# Initial parameters
setup(
name='cfclient',
description='Bitcraze Cazyflie quadcopter client',
version=VERSION,
author='Bitcraze team',
author_email='contact@bitcraze.se',
url='http://www.bitcraze.io',
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', # noqa
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='quadcopter crazyflie',
package_dir={'': 'src'},
packages=find_packages('src'),
entry_points={
'console_scripts': [
'cfclient=cfclient.gui:main',
'cfheadless=cfclient.headless:main',
'cfloader=cfloader:main',
'cfzmq=cfzmq:main'
],
},
install_requires=platform_requires + ['cflib~=0.1.15.0',
'appdirs~=1.4.0',
'pyzmq~=19.0',
'pyqtgraph~=0.11',
'PyYAML~=5.3',
'quamash~=0.6.1',
'qtm~=2.0.2',
'numpy~=1.19.2',
'vispy~=0.6.6',
'pyserial~=3.5'],
# List of dev dependencies
# You can install them by running
# $ pip install -e .[dev]
extras_require={
'dev': platform_dev_requires + [],
},
package_data=package_data,
data_files=data_files,
# cx_freeze options
**cxfreeze_options
)