-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.cfg
79 lines (72 loc) · 1.97 KB
/
setup.cfg
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
[metadata]
name = sense-emu
version = attr: sense_emu.__version__
description = The Raspberry Pi Sense HAT Emulator library
long_description = file: README.rst
author = Raspberry Pi Foundation
author_email = [email protected]
url = https://sense-emu.readthedocs.io/
project_urls =
Documentation = https://sense-emu.readthedocs.io/
Source Code = https://github.com/astro-pi/python-sense-emu
Issue Tracker = https://github.com/astro-pi/python-sense-emu/issues
keywords = raspberrypi sense hat
license = GPL-2.0-or-later
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: X11 Applications :: GTK
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Topic :: Scientific/Engineering
[options]
packages = find:
install_requires =
numpy
Pillow
[options.package_data]
sense_emu =
*.ui
*.png
*.txt
sense_emu_gui.svg
gschemas.compiled
examples/*/*.py
locale/*/LC_MESSAGES/*.mo
[options.extras_require]
test =
pytest
pytest-cov
mock
doc =
sphinx
sphinx-rtd-theme
[options.entry_points]
console_scripts =
sense_rec = sense_emu.record:app
sense_play = sense_emu.play:app
sense_csv = sense_emu.dump:app
gui_scripts =
sense_emu_gui = sense_emu.gui:main
[tool:pytest]
addopts = --cov --tb=short
testpaths = tests
[coverage:run]
source = sense_emu
branch = true
[coverage:report]
ignore_errors = true
show_missing = true
exclude_lines =
assert False
raise NotImplementedError
pass