forked from rm-hull/luma.examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (51 loc) · 1.66 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
def read_file(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as r:
return r.read()
README = read_file("README.rst")
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
test_deps = ["mock", "pytest", "pytest-cov"]
setup(
name="luma.examples",
author="Richard Hull",
author_email="[email protected]",
description=("Examples for the luma libraries."),
long_description=README,
license="MIT",
keywords="raspberry orange banana pi rpi opi sbc oled lcd led display screen spi i2c",
url="https://github.com/rm-hull/luma.examples",
install_requires=[
"luma.emulator",
"luma.oled",
"luma.lcd",
"luma.led_matrix"
],
setup_requires=pytest_runner,
tests_require=test_deps,
extras_require={
'docs': [
'sphinx >= 1.5.1'
],
'test': test_deps
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Topic :: Education",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
]
)