-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 884 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
sys.path.pop(0)
from setuptools import setup
setup(
name="micropython-gnssl76l",
py_modules=["gnssl76l"],
version="0.1.0",
description="MicroPython I2C driver for the Quectel GNSS L76-L (GPS) receiver",
long_description="L76-L is a concurrent receiver module integrating GPS, GLONASS, Galileo and QZSS systems. This library communicates uses I2C to access the L76-L.",
keywords="gps glonass galileo qzss micropython i2c",
url="https://github.com/tuupola/micropython-gnssl76l",
author="Mika Tuupola",
author_email="tuupola@appelsiini.net",
maintainer="Mika Tuupola",
maintainer_email="tuupola@appelsiini.net",
license="MIT",
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
],
)