forked from semuconsulting/PyGPSClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (73 loc) · 2.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
"""
Setup script for PyGPSClient Application
python setup.py sdist bdist_wheel
Created on 12 Sep 2020
:author: semuadmin
"""
from setuptools import setup, find_namespace_packages
from pygpsclient import version as VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="PyGPSClient",
version=VERSION,
packages=find_namespace_packages(
exclude=["tests", "references", "images", "docs", "examples"],
),
install_requires=[
"pygnssutils>=0.3.2",
"requests>=2.24.0",
"Pillow>=7.2.0",
"pyserial>=3.5",
],
package_data={
"pygpsclient": [
"resources/*.gif",
"resources/*.png",
"resources/*.ico",
"resources/*.icns",
],
},
entry_points={
"console_scripts": [
"pygpsclient = pygpsclient.__main__:main",
]
},
include_package_data=True,
author="semuadmin",
author_email="[email protected]",
description="PyGPSClient GNSS/GPS Graphical Client",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/semuconsulting/PyGPSClient",
license="BSD 3-Clause 'Modified' License",
keywords="PyGPSClient GNSS GPS GLONASS NMEA UBX GIS",
platforms="Windows, MacOS, Linux",
project_urls={
"Bug Tracker": "https://github.com/semuconsulting/PyGPSClient",
"Documentation": "https://github.com/semuconsulting/PyGPSClient",
"Sphinx API Documentation": "https://www.semuconsulting.com/pygpsclient",
"Source Code": "https://github.com/semuconsulting/PyGPSClient",
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Desktop Environment",
"Topic :: Terminals :: Serial",
"Topic :: Scientific/Engineering :: GIS",
],
python_requires=">=3.7",
)