Skip to content

Commit e737b79

Browse files
authored
Merge pull request #7 from kattni/pypi
PyPi setup.
2 parents 62fca3c + 806b02a commit e737b79

File tree

4 files changed

+90
-19
lines changed

4 files changed

+90
-19
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
*.mpy
2+
.idea
3+
__pycache__
4+
_build
5+
*.pyc
16
.env
27
build*
38
bundles
9+
*.DS_Store
10+
.eggs
11+
dist
12+
**/*.egg-info

.travis.yml

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
# This is a common .travis.yml for generating library release zip files for
2-
# CircuitPython library releases using circuitpython-build-tools.
3-
# See https://github.com/adafruit/circuitpython-build-tools for detailed setup
4-
# instructions.
5-
61
dist: trusty
72
sudo: false
83
language: python
94
python:
10-
- "3.6"
11-
5+
- '3.6'
126
cache:
13-
pip: true
14-
7+
pip: true
158
deploy:
16-
provider: releases
17-
api_key: $GITHUB_TOKEN
9+
- provider: releases
10+
api_key: "$GITHUB_TOKEN"
1811
file_glob: true
19-
file: $TRAVIS_BUILD_DIR/bundles/*
12+
file: "$TRAVIS_BUILD_DIR/bundles/*"
2013
skip_cleanup: true
2114
overwrite: true
2215
on:
2316
tags: true
24-
17+
- provider: pypi
18+
user: adafruit-travis
19+
on:
20+
tags: true
21+
password:
22+
secure: Pw3bUEUnkp1eMREw/z1cMbyten2K5FgSrpqva3r6PLAcQDtAgItMgsR1sklquOPebaqDS09Xjum3L7VFG2QIBpUWpcicncdfYryW+aJF7jYC6wkwT+0mFt0PNSi1T+eMPuQsy+4rSPGwEa4R+mbgCX56lTHvcWjdn5H2/SeGBb7aFcaE6f+CwhczpXvmG6VAywjEc+6js0A1hkT10R8W4Gz0WcyK7jEekIa2NQu24di7E+kyUUWsWzlvMbMmLVOTCZWlxVR6l02RYy/OhZOgefGgSbSJUKkmRjrytrVaCXVp5KQrbZkjUlnxVkh0JJ/fAShEQ6gft+pdUeMpxIlhkIqIdQOLhHzsOrV6yDNa6nH4CcOTUhjXtLCO1pp+IextDC+1d24lIzTu/rA0XzpbSSKaPLkFXip4/ci6p4FEZ6IReYxYdf+aREsU7ZmBJS+Kopcg+jjQzKf++D3VYIHtpGmQWNtg6sTDe1dnBK0nOLrCDHUAJnpruWTiJsDTSnr/Yzqf3Q6Hemb+yvZHVfQvmW+5/EnJcYZHao90XV/ajmVIwpdZW+TMRQamcxCBzaFzCLxT2G5KG4eDitX5x+3aQw72LrUzsBkE1gqnv8jNLRCEgxiikgLCnLbJ96LRpOr8ovriEX4nwNYnqS48yV52s5iqnLkTxq2I88nTjVPoRmY=
2523
install:
26-
- pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
27-
24+
- pip install -r requirements.txt
25+
- pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
26+
- pip install --force-reinstall pylint==1.9.2
2827
script:
29-
- pylint adafruit_gps.py
30-
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)
31-
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-gps --library_location .
32-
- cd docs && sphinx-build -E -W -b html . _build/html
28+
- pylint adafruit_gps.py
29+
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)
30+
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-gps --library_location
31+
.
32+
- cd docs && sphinx-build -E -W -b html . _build/html && cd ..

adafruit_gps.py

+2
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ def has_fix(self):
132132

133133
def _parse_sentence(self):
134134
# Parse any NMEA sentence that is available.
135+
# pylint: disable=len-as-condition
136+
# This needs to be refactored when it can be tested.
135137
sentence = self._uart.readline()
136138
if sentence is None or sentence == b'' or len(sentence) < 1:
137139
return None

setup.py

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
"""A setuptools based setup module.
2+
3+
See:
4+
https://packaging.python.org/en/latest/distributing.html
5+
https://github.com/pypa/sampleproject
6+
"""
7+
8+
# Always prefer setuptools over distutils
9+
from setuptools import setup, find_packages
10+
# To use a consistent encoding
11+
from codecs import open
12+
from os import path
13+
14+
here = path.abspath(path.dirname(__file__))
15+
16+
# Get the long description from the README file
17+
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
18+
long_description = f.read()
19+
20+
setup(
21+
name='adafruit-circuitpython-gps',
22+
23+
use_scm_version=True,
24+
setup_requires=['setuptools_scm'],
25+
26+
description='CircuitPython library for GPS modules.',
27+
long_description=long_description,
28+
long_description_content_type='text/x-rst',
29+
30+
# The project's main homepage.
31+
url='https://github.com/adafruit/Adafruit_CircuitPython_GPS',
32+
33+
# Author details
34+
author='Adafruit Industries',
35+
author_email='[email protected]',
36+
37+
install_requires=[],
38+
39+
# Choose your license
40+
license='MIT',
41+
42+
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
43+
classifiers=[
44+
'Development Status :: 3 - Alpha',
45+
'Intended Audience :: Developers',
46+
'Topic :: Software Development :: Libraries',
47+
'Topic :: System :: Hardware',
48+
'License :: OSI Approved :: MIT License',
49+
'Programming Language :: Python :: 3',
50+
'Programming Language :: Python :: 3.4',
51+
'Programming Language :: Python :: 3.5',
52+
],
53+
54+
# What does your project relate to?
55+
keywords='adafruit gps module latitude longitude breakout hardware micropython circuitpython',
56+
57+
# You can just specify the packages manually here if your project is
58+
# simple. Or you can use find_packages().
59+
py_modules=['adafruit_gps'],
60+
)

0 commit comments

Comments
 (0)