Skip to content

Commit 6be02d4

Browse files
committed
Inital commit based on device_contents
0 parents  commit 6be02d4

37 files changed

+2615
-0
lines changed

.gitignore

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
.idea/
2+
3+
# Created by .ignore support plugin (hsz.mobi)
4+
### Python template
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
env/
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*,cover
51+
.hypothesis/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
61+
# Flask stuff:
62+
instance/
63+
.webassets-cache
64+
65+
# Scrapy stuff:
66+
.scrapy
67+
68+
# Sphinx documentation
69+
docs/_build/
70+
71+
# PyBuilder
72+
target/
73+
74+
# Jupyter Notebook
75+
.ipynb_checkpoints
76+
77+
# pyenv
78+
.python-version
79+
80+
# celery beat schedule file
81+
celerybeat-schedule
82+
83+
# SageMath parsed files
84+
*.sage.py
85+
86+
# dotenv
87+
.env
88+
89+
# virtualenv
90+
.venv
91+
venv/
92+
ENV/
93+
94+
# Spyder project settings
95+
.spyderproject
96+
97+
# Rope project settings
98+
.ropeproject
99+
### JetBrains template
100+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
101+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
102+
103+
# User-specific stuff:
104+
.idea/**/workspace.xml
105+
.idea/**/tasks.xml
106+
.idea/dictionaries
107+
108+
# Sensitive or high-churn files:
109+
.idea/**/dataSources/
110+
.idea/**/dataSources.ids
111+
.idea/**/dataSources.xml
112+
.idea/**/dataSources.local.xml
113+
.idea/**/sqlDataSources.xml
114+
.idea/**/dynamic.xml
115+
.idea/**/uiDesigner.xml
116+
117+
# Gradle:
118+
.idea/**/gradle.xml
119+
.idea/**/libraries
120+
121+
# Mongo Explorer plugin:
122+
.idea/**/mongoSettings.xml
123+
124+
## File-based project format:
125+
*.iws
126+
127+
## Plugin-specific files:
128+
129+
# IntelliJ
130+
/out/
131+
132+
# mpeltonen/sbt-idea plugin
133+
.idea_modules/
134+
135+
# JIRA plugin
136+
atlassian-ide-plugin.xml
137+
138+
# Crashlytics plugin (for Android Studio and IntelliJ)
139+
com_crashlytics_export_strings.xml
140+
crashlytics.properties
141+
crashlytics-build.properties
142+
fabric.properties
143+
144+
.coveralls.yml
145+

.readthedocs.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Build documentation in the docs/ directory with Sphinx
9+
sphinx:
10+
configuration: docs/conf.py
11+
12+
# Build documentation with MkDocs
13+
#mkdocs:
14+
# configuration: mkdocs.yml
15+
16+
# Optionally build your docs in additional formats such as PDF and ePub
17+
formats:
18+
- epub
19+
- pdf
20+
21+
# Optionally set the version of Python and requirements required to build your docs
22+
python:
23+
version: 3.7
24+
install:
25+
- method: pip
26+
path: .
27+
extra_requirements:
28+
- docs
29+
system_packages: False

.travis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
language: python
3+
dist: xenial
4+
sudo: false
5+
matrix:
6+
include:
7+
- python: 2.7.16
8+
env: TOX_ENV=py27
9+
- python: 3.5.7
10+
env: TOX_ENV=py35
11+
- python: 3.6.8
12+
env: TOX_ENV=py36
13+
- python: 3.7.3
14+
env: TOX_ENV=py37
15+
- python: pypy2.7-7.0.0
16+
env: TOX_ENV=pypy
17+
- python: pypy3.5
18+
env: TOX_ENV=pypy3
19+
- python: 3.5
20+
env: TOX_ENV=cover
21+
- python: 3.5
22+
env: TOX_ENV=style
23+
- python: 3.5
24+
env: TOX_ENV=docs
25+
26+
install:
27+
- pip install -U pip wheel
28+
- pip install tox
29+
cache:
30+
directories:
31+
- $HOME/.cache/pip
32+
before_script:
33+
- uname -a
34+
script:
35+
- tox -v -e $TOX_ENV

CHANGELOG.rst

Whitespace-only changes.

0 commit comments

Comments
 (0)