Skip to content

Commit

Permalink
Merge d7b5161 into 747eff8
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Jun 15, 2019
2 parents 747eff8 + d7b5161 commit edc77f9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 5 additions & 3 deletions luma/__init__.py
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2013-17 Richard Hull and contributors
# Copyright (c) 2013-2019 Richard Hull and contributors
# See LICENSE.rst for details.

from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
10 changes: 6 additions & 4 deletions setup.py
Expand Up @@ -5,7 +5,7 @@
import os
import sys
from io import open
from setuptools import setup
from setuptools import setup, find_packages


def read_file(fname, encoding='utf-8'):
Expand Down Expand Up @@ -34,7 +34,7 @@ def find_version(*file_paths):
pytest_runner = ['pytest-runner'] if needs_pytest else []
test_deps = [
'mock;python_version<"3.3"',
'pytest==4.5',
'pytest<=4.5',
'pytest-cov'
]

Expand All @@ -45,14 +45,16 @@ def find_version(*file_paths):
author_email="richard.hull@destructuring-bind.org",
description=("A library to drive PCD8544, HT1621, ST7735, ST7567 and UC1701X-based LCDs"),
long_description="\n\n".join([README, CONTRIB, CHANGES]),
long_description_content_type="text/x-rst",
python_requires='>=2.7',
license="MIT",
keywords="raspberry pi rpi lcd nokia 5110 display screen pcd8544 st7735 uc1701x ht1621 spi 84x48 160x128",
url="https://github.com/rm-hull/luma.lcd",
download_url="https://github.com/rm-hull/luma.lcd/tarball/" + version,
namespace_packages=["luma"],
packages=["luma.lcd"],
packages=find_packages(),
zip_safe=False,
install_requires=["luma.core>=1.11"],
install_requires=["luma.core>=1.12.0"],
setup_requires=pytest_runner,
tests_require=test_deps,
extras_require={
Expand Down

0 comments on commit edc77f9

Please sign in to comment.