forked from schwehr/libais
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·118 lines (104 loc) · 3.08 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
#!/usr/bin/env python
"""Setup script for libais"""
import os
import sys
from setuptools import setup, find_packages, Extension
with open('README.rst') as f:
readme = f.read()
with open(os.path.join('ais', '__init__.py')) as f:
for line in f:
if line.strip().startswith('__version__'):
# Get version from line but leave as str: __version__ = "0.16" -> 0.16
VERSION = line.split('=')[1].strip()[1:-1].strip()
break
EXTRA_COMPILE_ARGS = []
if sys.platform in ('darwin', 'linux', 'linux2'):
EXTRA_COMPILE_ARGS = ['-std=c++11']
AIS_MODULE = Extension(
'_ais',
extra_compile_args=EXTRA_COMPILE_ARGS,
sources=[os.path.join('src', 'libais', fn) for fn in (
'ais_py.cpp',
'ais.cpp',
'ais_bitset.cpp',
'ais1_2_3.cpp', # Class A position
'ais4_11.cpp', # Basestation report, '=' - UTC time response
'ais5.cpp', # Static data report / ship name
'ais6.cpp', # Addressed binary message (ABM)
'ais7_13.cpp',
'ais8.cpp', # Broadcast binary message (BBM)
'ais8_1_22.cpp', # Area notice
'ais8_1_26.cpp', # Environmental Sensor Report
'ais8_200.cpp',
'ais8_366.cpp',
'ais8_367.cpp',
'ais9.cpp',
'ais10.cpp', # :
# 11 See 4 - ;
'ais12.cpp', # <
# 13 See 7 - =
'ais14.cpp', # >
'ais15.cpp', # ?
'ais16.cpp', # @
'ais17.cpp', # A
'ais18.cpp', # B
'ais19.cpp', # C
'ais20.cpp', # D
'ais21.cpp', # E
'ais22.cpp', # F
'ais23.cpp', # G
'ais24.cpp', # H
'ais25.cpp', # I - single slot binary message
'ais26.cpp', # J - Multi-slot binary message with comm-state
'ais27.cpp', # K - Long-range position
# 'ais28.cpp', # L - Not yet defined
)
]
)
tests_require = [
'pytest',
'pytest-cov',
'pytest-runner',
]
setup(
name='libais',
version=VERSION,
description='Automatic Identification System decoding - ship tracking',
long_description=readme,
author='Kurt Schwehr',
author_email='schwehr@gmail.com',
url='https://github.com/schwehr/libais',
license='Apache 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: Android',
'Operating System :: iOS',
'Operating System :: POSIX',
'Programming Language :: C++',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Communications',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Networking',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
],
platforms=["POSIX"],
scripts=[os.path.join('bin', 'aisdecode')],
entry_points={
'console_scripts': [
'libais_stats=ais.stats:main',
]
},
ext_modules=[AIS_MODULE],
packages=find_packages(exclude=['test']),
install_requires=['six'],
extras_require={
'tests': tests_require,
},
tests_require=tests_require,
test_suite="test"
)