forked from swift-nav/pynex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (35 loc) · 973 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from version import get_git_version
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)
from version import get_git_version
INSTALL_REQUIRES = ['pandas', 'tables']
setup(name='pynex',
version = get_git_version(),
description='Python RINEX utilities',
license='GPLv3',
url='http://swiftnav.com',
author='Swift Navigation Inc.',
maintainer='Swift Navigation',
maintainer_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'pynex = pynex.rinex_file:main',
'ddtool = pynex.dd_tools:main',
]
},
install_requires=INSTALL_REQUIRES,
platforms="Linux,Windows,Mac",
use_2to3=False,
zip_safe=False
)