forked from imar-navigation/ixcom-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.76 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
#!/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.1.4',
description='Library for communicating with xcom devices over network',
author='iMAR Navigation GmbH',
author_email='[email protected]',
url='http://www.imar-navigation.de',
keywords=['XCOM', 'Inertial navigation', 'INS', 'iMAR', 'iNAT', 'GNSS', 'GPS', 'AHRS'],
packages=['ixcom'],
entry_points={
'console_scripts': [
'configdump2txt = ixcom.cmdline:configdump2txt',
'monitor2xcom = ixcom.cmdline:monitor2xcom',
'xcom_lookup = ixcom.cmdline:xcom_lookup',
'split_config = ixcom.cmdline:split_config',
],
},
install_requires=[
'numpy>=1.16.2',
],
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",
},
)