-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (29 loc) · 1.08 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
#!/usr/bin/env python3
from setuptools import setup
PLUGIN_ENTRY_POINT = 'ovos-phal-plugin-gpsd=ovos_phal_plugin_gpsd:GPSDPlugin'
setup(
name='ovos-phal-plugin-gpsd',
version='0.0.1',
description='A PHAL plugin for mycroft',
url='https://github.com/OpenVoiceOS/ovos-PHAL-plugin-gpsd',
author='JarbasAi',
author_email='[email protected]',
license='Apache-2.0',
packages=['ovos_phal_plugin_gpsd'],
install_requires=["ovos-plugin-manager>=0.0.1",
"gpsdclient",
"reverse_geocoder",
"python-geoip-geolite2",
"timezonefinder"],
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points={'ovos.plugin.phal': PLUGIN_ENTRY_POINT}
)