forked from semuconsulting/PyGPSClient
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
65 lines (58 loc) · 2.36 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
#!/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_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_packages(exclude=['tests', 'references', 'images']),
install_requires=["pyubx2>=1.0.6", "pynmeagps>=0.1.8", "requests>=2.24.0",
"Pillow>=7.2.0", "pyserial>=3.4"],
package_data={
"pygpsclient": ["resources/*.gif", "resources/*.png",
"resources/*.ico", "resources/*.icns"],
},
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": "http://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',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Desktop Environment',
'Topic :: Terminals :: Serial',
'Topic :: Scientific/Engineering :: GIS'
]
)