Skip to content

Commit 6c548b8

Browse files
Added setup.py
1 parent 0e3e240 commit 6c548b8

12 files changed

+1637
-1
lines changed

GPL-V3.0.txt

+674
Large diffs are not rendered by default.

MANIFEST.in

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
include .gitignore
2+
include .pyflymakerc
3+
include CHANGES.txt
4+
include GPL-V3.0.txt
5+
include LICENSE.txt
6+
include MANIFEST.in
7+
include README.html
8+
include README.rst
9+
include README.txt
10+
include TODO.rst
11+
include make-release.sh
12+
include pylintrc.ini
13+
include setenv.sh start.sh
14+
include setup_data.py
15+
include requirements.txt requirements-dev.txt
16+
include .travis.yml
17+
include bower/bower.json
18+
recursive-include avr-datasheet-extractor *
19+
recursive-include bin *
20+
recursive-include PySimAvr *.py *.yml *.h *.py.in
21+
recursive-include doc *
22+
recursive-include doc/sphinx/source/_static *
23+
recursive-include doc/sphinx/source/_templates *
24+
recursive-include examples *
25+
recursive-include gh-pages *
26+
recursive-include spec *.spec *.desktop
27+
recursive-include tools *
28+
recursive-include unit-test *.py
29+
global-exclude *~
30+
global-exclude *__pycache__*
31+
global-exclude *.pyc
32+
prune build
33+
prune doc/sphinx/build
34+
prune doc/sphinx/source/bower
35+
prune doc/sphinx/source/_static/MathJax

PySimAvr/Avr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
####################################################################################################
3434

35-
_yaml_path = _os.path.join(_os.path.dirname(__file__), 'opcodes.yaml')
35+
_yaml_path = _os.path.join(_os.path.dirname(__file__), 'opcodes.yml')
3636

3737
#: Dictionnary providing the :class:`Instruction` instances for the AVR instruction set.
3838
instruction_set = InstructionSet(_yaml_path)
File renamed without changes.

0 commit comments

Comments
 (0)