-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
67 lines (57 loc) · 1.83 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
#!/usr/bin/env python
"""Python log crunching for PX4.
A PX4 flight log analyzer that supports pandas.
"""
from __future__ import print_function
from setuptools import setup, find_packages
import versioneer
DOCLINES = __doc__.split("\n")
CLASSIFIERS = """\
Development Status :: 1 - Planning
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Other
Topic :: Software Development
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
# pylint: disable=invalid-name
setup(
name='px4tools',
maintainer="James Goppert",
maintainer_email="[email protected]",
description=DOCLINES[0],
long_description="\n".join(DOCLINES[2:]),
url='https://github.com/dronecrew/px4tools',
author='James Goppert',
author_email='[email protected]',
download_url='https://github.com/dronecrew/px4tools',
license='BSD 3-Clause',
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
install_requires=[
'control >= 0.7.0',
'matplotlib >= 2.2.2',
'numpy >= 1.13.3',
'pandas >= 0.23.1',
'python-dateutil >= 2.5.0',
'pyulog >= 0.6.0',
'scipy >= 1.1.0',
'transforms3d >= 0.3.1'],
tests_require=['nose'],
test_suite='nose.collector',
entry_points={
'console_scripts': ['px42csv=px4tools.px42csv:main'],
},
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)