forked from swift-nav/libsbp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
import sys
reload(sys).setdefaultencoding("UTF-8")
except:
pass
try:
from setuptools import setup, find_packages
except ImportError:
print 'Please install or upgrade setuptools or pip to continue.'
sys.exit(1)
setup(name='sbp_gen',
description='Generator for Swift Binary Protocol',
long_description=open('README.md').read(),
version='0.10',
author='Swift Navigation',
author_email='[email protected]',
maintainer='Bhaskar Mookerji',
maintainer_email='[email protected]',
url='https://github.com/swift-nav/libsbp/generator',
keywords='',
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7'
],
packages=find_packages(),
platforms="Linux,Windows,Mac",
py_modules=['libsbp'],
use_2to3=False,
zip_safe=False)