-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (47 loc) · 2.05 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
#!/usr/bin/env python3
"""Setup script for xcom library"""
from setuptools import setup
import os
import sys
if sys.version_info[0] < 3 or (sys.version_info[0] == 3 and sys.version_info[1] < 6):
sys.exit('Sorry, Python < 3.6 is not supported')
if __name__ == '__main__':
readmePath = os.path.join(os.path.dirname(__file__), 'README.md')
long_description = open(readmePath, "rt").read()
setup(name='ixcom',
version='1.3.7',
description='Library for communicating with xcom devices over network',
author='iMAR Navigation GmbH',
author_email='support@imar-navigation.de',
url='http://www.imar-navigation.de',
keywords=['XCOM', 'Inertial navigation', 'INS', 'iMAR', 'iNAT', 'GNSS', 'GPS', 'AHRS'],
packages=['ixcom'],
package_data={'': ['ixcom/messages/*.json', 'ixcom/parameters/*.json']},
include_package_data=True,
entry_points={
'console_scripts': [
'configdump2txt = ixcom.cmdline:configdump2txt',
'monitor2xcom = ixcom.cmdline:monitor2xcom',
'xcom_lookup = ixcom.cmdline:xcom_lookup',
'split_config = ixcom.cmdline:split_config',
'xcom-remove-partial-msgs = ixcom.cmdline:remove_partial_msgs',
],
},
install_requires=[
'numpy>=1.16.2',
],
extras_require={
'fastcrc': ['fastcrc']
},
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Documentation": "https://ixcom.readthedocs.io/en/latest/",
"Source Code": "https://github.com/imar-navigation/ixcom-python",
},
)