From 891234be0ca50f61049217db2617e29d1e51dfa0 Mon Sep 17 00:00:00 2001 From: Pierrick C Date: Sun, 16 Jun 2019 19:15:44 +0200 Subject: [PATCH] Update config files --- .travis.yml | 2 +- setup.py | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index a4a9cf2..5a2feb0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,5 +44,5 @@ install: script: - pylint neotrellism4.py - ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py) - - circuitpython-build-bundles --filename_prefix circuitpython-neotrellism4 --library_location . + - circuitpython-build-bundles --filename_prefix neotrellism4 --library_location . - cd docs && sphinx-build -E -W -b html . _build/html && cd .. diff --git a/setup.py b/setup.py index e0d7fff..bc0977f 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( - name='adafruit-circuitpython-neotrellism4', + name='circuitpython-neotrellism4', use_scm_version=True, setup_requires=['setuptools_scm'], @@ -27,16 +27,19 @@ setup( long_description_content_type='text/x-rst', # The project's main homepage. - url='https://github.com/adafruit/Adafruit_CircuitPython_NeoTrellisM4', + url='https://github.com/arofarn/NeoTrellisM4', # Author details - author='Adafruit Industries', - author_email='circuitpython@adafruit.com', + author='arofarn', + author_email='arofarn@arofarn.info', install_requires=[ 'Adafruit-Blinka', 'adafruit-circuitpython-busdevice', - 'neopixel' + 'Adafruit_CircuitPython_NeoPixel', + 'adafruit_seesaw', + 'Adafruit_CircuitPython_MatrixKeypad', + 'Adafruit_CircuitPython_NeoTrellis', ], # Choose your license @@ -61,5 +64,5 @@ setup( # simple. Or you can use find_packages(). # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER, # CHANGE `py_modules=['...']` TO `packages=['...']` - py_modules=['circuitpython_neotrellism4'], + py_modules=['neotrellism4'], )