forked from rm-hull/luma.oled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
96 lines (86 loc) · 3.01 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import os
import sys
from io import open
from setuptools import setup, find_packages
def read_file(fpath):
with open(fpath, encoding='utf-8') as r:
return r.read()
def find_version(*file_paths):
fpath = os.path.join(os.path.dirname(__file__), *file_paths)
version_file = read_file(fpath)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
err_msg = 'Unable to find version string in {}'.format(fpath)
raise RuntimeError(err_msg)
README = read_file('README.rst')
CONTRIB = read_file('CONTRIBUTING.rst')
CHANGES = read_file('CHANGES.rst')
version = find_version('luma', 'oled', '__init__.py')
project_url = 'https://github.com/rm-hull/luma.oled'
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
test_deps = [
'mock;python_version<"3.3"',
'pytest<=4.5',
'pytest-cov'
]
setup(
name="luma.oled",
version=version,
author="Richard Hull",
author_email="[email protected]",
description=("A small library to drive an OLED device with either "
"SSD1306, SSD1309, SSD1322, SSD1325, SSD1327, SSD1331, "
"SSD1351, SSD1362 or SH1106 chipset"),
long_description="\n\n".join([README, CONTRIB, CHANGES]),
long_description_content_type="text/x-rst",
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
license="MIT",
keywords=("raspberry pi rpi oled display screen "
"rgb monochrome greyscale color "
"ssd1306 ssd1309 ssd1322 ssd1325 ssd1327 ssd1331 ssd1351 sh1106 "
"spi i2c 256x64 128x64 128x32 96x16"),
url=project_url,
download_url=project_url + "/tarball/" + version,
project_urls={
'Documentation': 'https://luma-oled.readthedocs.io',
'Source': project_url,
'Issue Tracker': project_url + '/issues',
},
packages=find_packages(),
namespace_packages=["luma"],
zip_safe=False,
install_requires=["luma.core>=1.12.0"],
setup_requires=pytest_runner,
tests_require=test_deps,
extras_require={
'docs': [
'sphinx >= 1.5.1'
],
'qa': [
'rstcheck',
'flake8'
],
'test': test_deps
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Topic :: Education",
"Topic :: System :: Hardware",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
)