Skip to content

Commit cc3ec87

Browse files
authoredMar 12, 2019
feat: Add Python Support
Support producing Python 3.6+ artifacts
1 parent b2e106e commit cc3ec87

Some content is hidden

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

51 files changed

+4815
-3
lines changed
 

‎.flake8

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[flake8]
2+
max-line-length = 88
3+
exclude = *.egg,*/interfaces.py,node_modules,.state
4+
ignore = W503,E203
5+
select = E,W,F,N
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
4+
rm -rf dist/python
5+
mkdir -p dist/python
6+
mv *.whl dist/python
7+
mv *.tar.gz dist/python

0 commit comments

Comments
 (0)
Please sign in to comment.