forked from semuconsulting/pyubx2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (55 loc) · 2.03 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
"""
Created on 1 Oct 2020
@author: semuadmin
"""
import setuptools
from pyubx2 import version as VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyubx2",
version=VERSION,
author="semuadmin",
author_email="[email protected]",
description="UBX Protocol Parser",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/semuconsulting/pyubx2",
packages=setuptools.find_packages(exclude=["tests", "examples", "docs"]),
entry_points={
"console_scripts": [
"ubxdump = pyubx2cli.ubxdump:main",
]
},
license="BSD 3-Clause 'Modified' License",
keywords="pyubx2 GNSS GPS GLONASS UBX GIS u-blox",
platforms="Windows, MacOS, Linux",
project_urls={
"Bug Tracker": "https://github.com/semuconsulting/pyubx2",
"Documentation": "https://github.com/semuconsulting/pyubx2",
"Sphinx API Documentation": "https://www.semuconsulting.com/pyubx2",
"Source Code": "https://github.com/semuconsulting/pyubx2",
},
classifiers=[
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
],
python_requires=">=3.6",
)