-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from RackReaver/develop
Alpha Deploy
- Loading branch information
Showing
11 changed files
with
2,669 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_version.py export-subst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
# Config files | ||
/config/* | ||
|
||
# Virtual Enviornment | ||
/venv/* | ||
|
||
# Code Editor files | ||
.vscode/* | ||
|
||
|
||
# All logs | ||
*.log | ||
# All logs | ||
logs/* | ||
*.log | ||
|
||
# Temp files | ||
__pycache__/* | ||
*.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: python | ||
dist: xenial | ||
sudo: true | ||
python: | ||
- "3.7" | ||
# Install dependencies | ||
install: | ||
- pip install -r requirements.txt | ||
|
||
# Run tests | ||
script: | ||
- pytest | ||
|
||
deploy: | ||
provider: pypi | ||
server: https://test.pypi.org/legacy/ | ||
user: RackReaver | ||
password: | ||
secure: "jhoq3cKXpyQV0oy2/ajYXzGRQWnrnIm1IT/g522tomQKU8IYbn4Wtr1kSV74exWqjFz+VapitJLTRLv/PemhXiUHsP8yEp3odjkGSnedQI4vSkJ9O/3VqpJWrU3M986BZ+8L3JFnDouxAqbFbB7YFvky4jdGvnI0N37yoBdLpV8Y8uyAaVzfPrAGAW5Pa4D5AAdj9wEFklWw4wGrMo7Z+BrGMcyG9KzPCLYGmiIiaJdatUMVw2N9PUVTgzzV/Xky4AbkKfuMnNpZKywd8T1FsVuhe9n5dStjVho+q0N2tiqcLhmg8NY+cwBtkeLJFJU3/slDAQ1U64aIe/VfaZuTrOs1Pr95A/vrZKZuQdpsWlNpSus2PW9EnzXeYYCVO4vavNNtx9nb/ue2g4M++Pyrak56ev4Qq1YT12oqfgPcc69N02bTG5VEs3wVrfTu7tm73cokW3zhuCpOKvLoLcR1g9xj1UOQRopPJpPfF/mGumY6IMik0RcKt6gilOz4J4jlgrR0YRV+fIdLt2/AkDdlkfg9yhNxO8A/D54G9xC6g1g7hKwFLI3kzDfZoovoFq+MMGfUUiUGosV6ve4g3ZlXVPqhh1KwqGUstis9fY0lihVk7V7NA0/guAfKj1UWOjfYZ2+WeaQj3PJFc8Oy+7KrkfU9cdlw5iCLkj9kmj0kshI=" | ||
on: | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include versioneer.py | ||
include _version.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.