Skip to content

Commit 44a90bf

Browse files
committedApr 30, 2015
Initial commit of PeachPy 0.2.0
0 parents  commit 44a90bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+33716
-0
lines changed
 

‎.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Precompiled Python files
2+
*.pyc
3+
4+
# PyCharm project files
5+
.idea/
6+
7+
# Auto-generated sources
8+
peachpy/x86_64/amd.py
9+
peachpy/x86_64/avx.py
10+
peachpy/x86_64/crypto.py
11+
peachpy/x86_64/fma.py
12+
peachpy/x86_64/generic.py
13+
peachpy/x86_64/mask.py
14+
peachpy/x86_64/mmxsse.py
15+
16+
# Generated documentation
17+
doc/
18+
19+
# Generated distributions
20+
dist/
21+
MANIFEST
22+
23+
# Generated object/assembly files
24+
*.o
25+
*.s
26+
*.S

‎MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include license.rst
2+
include readme.rst
3+
exclude sphinx
4+
exclude test
5+

0 commit comments

Comments
 (0)
Please sign in to comment.