Skip to content

Commit

Permalink
Made some functional changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wboxx1 committed Jun 15, 2020
1 parent 57140d7 commit ade9a47
Show file tree
Hide file tree
Showing 82 changed files with 21,439 additions and 6,391 deletions.
204 changes: 102 additions & 102 deletions .gitignore
@@ -1,103 +1,103 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
alabaster
128 changes: 64 additions & 64 deletions .travis.yml
@@ -1,64 +1,64 @@
# Config file for automatic testing at travis-ci.org
sudo: false
language: python
matrix:
include:
- name: "Python 3.6.3 on Xenial Linux"
python: 3.6 # this works for Linux but is ignored on macOS or Windows
env: TEST=tox
- name: "Python 3.5.6 on Xenial Linux"
python: 3.5
env: TEST=tox
- name: "Python 3.6.8 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python3 --version 3.6.8 # this install takes at least 1 min 30 sec
- python -m pip install --upgrade pip
before_script:
- poetry install
env:
- PATH=/c/Python36:/c/Python36/Scripts:$PATH;
- TEST="poetry run pytest --cov=src/antenna_intensity_modeler tests/"
- name: "Python 3.5.4 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python3 -version 3.5.4 # this install takes at least 1 min 30 sec
- python -m pip install --upgrade pip
before_script:
- poetry install
env:
- PATH=/c/Python35:/c/Python35/Scripts:$PATH;
- TEST="poetry run pytest --cov=src/antenna_intensity_modeler tests/"

env:
global:
- secure: "nPG6veYLoq/o6Hg6h/O6+ZkZgFVKyMch16+KIUSfHI0RK+2LD3BM0HsMmhuMbkwOjiLCSSU6N260eReIYZpcvoBHzxA32VeX3VeKp572LOKWN1FG1+/R7ebzbEXkLWQHAMavFr+5IJfGMOZB/y9jbMSBLKVLRC51EJFnt8lg4/2Wlcy7/i02nSvjD0ToIKk33gOCXKjk6TH1BsuuvrnjSEmvEQscrqN7kVjhB/QEGBXqi6vn0YcS2FO+EcAXtJ5zoEi4eRi6DOAl0RndfHSTmzc6Row5nvWRT/OJdEroA1q5xfjArskpQBe3kLZ/XpFPTMHznBbtTIddZlS0GdtisfU+z/d4Ez2HezDsDkHRiGdE90M4f7TnAcNuxOGXaBxaNooMD7oLerPvV0YzoyQqrY/sR/nPGhk3psxzczWiUMZGQfDOLID/IFG9wH+yOo68VYrLQwNBZMPqWK+EIDGTejx5jAtODN8Jy7h4bQC/vjfNOr7t7ne2sJMYsGwZNnpp7zFYw1EsqBLgz55/aOfcIem/7BvYT4bghRg6JfVfk+drDkiEPUTPtJ5Y9xbsqEJuzM0NPNv6tM/aw0dEYVPwsPc3jcnKG6T+ZG4/AGM+KiYWnDwRZ7pNYva730su3mtTDGcGnWYv6+y/bteGOfDmXfUHQC0GRCYHQMrG8emdTjM="

# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U poetry
- pip install -U tox-travis


# Command to run tests, e.g. python setup.py test
script: $TEST

# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password

before-deploy:
- poetry config http-basic.mypypi wboxx1 $TRAVIS_PASS
- poetry build

#deploy:
# provider: script
# script: poetry publish
# on:
# tags: true
# repo: wboxx1/antenna-intensity-modeler
# branch: master
# python: 3.6
# Config file for automatic testing at travis-ci.org
sudo: false
language: python
matrix:
include:
- name: "Python 3.6.3 on Xenial Linux"
python: 3.6 # this works for Linux but is ignored on macOS or Windows
env: TEST=tox
- name: "Python 3.5.6 on Xenial Linux"
python: 3.5
env: TEST=tox
- name: "Python 3.6.8 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python3 --version 3.6.8 # this install takes at least 1 min 30 sec
- python -m pip install --upgrade pip
before_script:
- poetry install
env:
- PATH=/c/Python36:/c/Python36/Scripts:$PATH;
- TEST="poetry run pytest --cov=src/antenna_intensity_modeler tests/"
- name: "Python 3.5.4 on Windows"
os: windows # Windows 10.0.17134 N/A Build 17134
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python3 -version 3.5.4 # this install takes at least 1 min 30 sec
- python -m pip install --upgrade pip
before_script:
- poetry install
env:
- PATH=/c/Python35:/c/Python35/Scripts:$PATH;
- TEST="poetry run pytest --cov=src/antenna_intensity_modeler tests/"

env:
global:
- secure: "nPG6veYLoq/o6Hg6h/O6+ZkZgFVKyMch16+KIUSfHI0RK+2LD3BM0HsMmhuMbkwOjiLCSSU6N260eReIYZpcvoBHzxA32VeX3VeKp572LOKWN1FG1+/R7ebzbEXkLWQHAMavFr+5IJfGMOZB/y9jbMSBLKVLRC51EJFnt8lg4/2Wlcy7/i02nSvjD0ToIKk33gOCXKjk6TH1BsuuvrnjSEmvEQscrqN7kVjhB/QEGBXqi6vn0YcS2FO+EcAXtJ5zoEi4eRi6DOAl0RndfHSTmzc6Row5nvWRT/OJdEroA1q5xfjArskpQBe3kLZ/XpFPTMHznBbtTIddZlS0GdtisfU+z/d4Ez2HezDsDkHRiGdE90M4f7TnAcNuxOGXaBxaNooMD7oLerPvV0YzoyQqrY/sR/nPGhk3psxzczWiUMZGQfDOLID/IFG9wH+yOo68VYrLQwNBZMPqWK+EIDGTejx5jAtODN8Jy7h4bQC/vjfNOr7t7ne2sJMYsGwZNnpp7zFYw1EsqBLgz55/aOfcIem/7BvYT4bghRg6JfVfk+drDkiEPUTPtJ5Y9xbsqEJuzM0NPNv6tM/aw0dEYVPwsPc3jcnKG6T+ZG4/AGM+KiYWnDwRZ7pNYva730su3mtTDGcGnWYv6+y/bteGOfDmXfUHQC0GRCYHQMrG8emdTjM="

# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U poetry
- pip install -U tox-travis


# Command to run tests, e.g. python setup.py test
script: $TEST

# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password

before-deploy:
- poetry config http-basic.mypypi wboxx1 $TRAVIS_PASS
- poetry build

#deploy:
# provider: script
# script: poetry publish
# on:
# tags: true
# repo: wboxx1/antenna-intensity-modeler
# branch: master
# python: 3.6
8 changes: 6 additions & 2 deletions .vscode/settings.json
@@ -1,3 +1,7 @@
{
"python.pythonPath": "C:\\Users\\SCYT\\Anaconda3\\envs\\py36\\python.exe"
{
"python.pythonPath": "C:\\Users\\SCYT\\Anaconda3\\envs\\py36\\python.exe",
"deepcode.review.results.hideInformationIssues": false,
"python.linting.pylintEnabled": true,
"python.linting.pycodestyleEnabled": false,
"python.linting.enabled": true
}
26 changes: 13 additions & 13 deletions AUTHORS.rst
@@ -1,13 +1,13 @@
=======
Credits
=======

Development Lead
----------------

* Will Boxx <wboxx1@gmail.com>

Contributors
------------

None yet. Why not be the first?
=======
Credits
=======

Development Lead
----------------

* Will Boxx <wboxx1@gmail.com>

Contributors
------------

None yet. Why not be the first?

0 comments on commit ade9a47

Please sign in to comment.