forked from swift-nav/libsbp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (42 loc) · 1.21 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
#!/usr/bin/env python
from sbp import __version__
from setuptools import setup
CLASSIFIERS = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
]
PACKAGES = [
'sbp',
'sbp.client',
'sbp.client.drivers',
'sbp.client.loggers',
]
PLATFORMS = [
'linux',
'osx',
'win32',
]
with open('README.md') as f:
readme = f.read()
with open('./requirements.txt') as f:
INSTALL_REQUIRES = [i.strip() for i in f.readlines()]
setup(name='sbp',
description='Python bindings for Swift Binary Protocol',
long_description=readme,
version=__version__,
author='Swift Navigation',
author_email='[email protected]',
url='https://github.com/swift-nav/libsbp',
classifiers=CLASSIFIERS,
packages=PACKAGES,
platforms=PLATFORMS,
install_requires=INSTALL_REQUIRES,
use_2to3=False,
zip_safe=False)