-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
26 lines (24 loc) · 903 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
readme = f.read()
setup(
name='ntripbrowser',
version='3.0.2',
author='Andrew Yushkevich, Alexander Yashin',
author_email='[email protected], [email protected]',
packages=['ntripbrowser'],
install_requires=['cchardet>=2.1.4', 'geopy>=1.14', 'texttable', 'pager', 'pycurl', 'cachecontrol>=0.12.4'],
tests_requires=['pytest', 'mock', 'tox'],
license='BSD-3-Clause',
url='https://github.com/emlid/ntripbrowser.git',
description='CLI tool to easily get NTRIP caster information',
long_description=readme,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'ntripbrowser = ntripbrowser.browser:main',
],
},
)