Skip to content

Commit 92286a1

Browse files
committed
V0.0.1
1 parent 463a6d8 commit 92286a1

21 files changed

+612
-157
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
custom: ['https://www.paypal.me/dteather']
2+
github: davidteather

.github/workflows/package-test.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI Test
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
- nightly
10+
- 'releases/*'
11+
12+
jobs:
13+
Unit-Tests:
14+
timeout-minutes: 10
15+
runs-on: ${{ matrix.os }}
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
os: [macos-latest, windows-latest, ubuntu-latest]
20+
python-version: [3.6, 3.7, 3.8, 3.9]
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Install Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: ${{ matrix.python-version }}
27+
- name: Setup dependencies
28+
run: |
29+
python -m pip install --upgrade pip
30+
python install pytest
31+
python setup.py install
32+
33+
- name: Run Tests
34+
run: pytest tests

.github/workflows/python-publish.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflows will upload a Python Package using Twine when a release is created
2+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3+
4+
name: Upload Python Package
5+
6+
on:
7+
release:
8+
types: [created]
9+
10+
jobs:
11+
deploy:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up Python
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.x'
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install setuptools wheel twine
25+
- name: Build and publish
26+
env:
27+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
28+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
29+
run: |
30+
python setup.py sdist
31+
twine upload dist/*

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
test.py
22
__pycache__
33
dist
4-
build
4+
build
5+
python_obfuscator.egg-info
6+
.pytest_cache

README.md

Lines changed: 350 additions & 0 deletions
Large diffs are not rendered by default.

python_obfuscator.egg-info/PKG-INFO

Lines changed: 0 additions & 24 deletions
This file was deleted.

python_obfuscator.egg-info/SOURCES.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

python_obfuscator.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

python_obfuscator.egg-info/entry_points.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

python_obfuscator.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)