Commit 8be245a6 authored by David M. Rogers's avatar David M. Rogers
Browse files

Added packaging metadata and reorganized.

parent 30bf545d
Loading
Loading
Loading
Loading

.coveragerc

0 → 100644
+28 −0
Original line number Diff line number Diff line
# .coveragerc to control coverage.py
[run]
branch = True
source = pmake
# omit = bad_file.py

[paths]
source =
    src/
    */site-packages/

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain about missing debug-only code:
    def __repr__
    if self\.debug

    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise NotImplementedError

    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.:

.gitignore

0 → 100644
+54 −0
Original line number Diff line number Diff line
# Temporary and binary files
*~
*.py[cod]
*.so
*.cfg
!.isort.cfg
!setup.cfg
*.orig
*.log
*.pot
__pycache__/*
.cache/*
.*.swp
*/.ipynb_checkpoints/*
.DS_Store

# Project files
.ropeproject
.project
.pydevproject
.settings
.idea
.vscode
tags

# Package files
*.egg
*.eggs/
.installed.cfg
*.egg-info

# Unittest and coverage
htmlcov/*
.coverage
.coverage.*
.tox
junit*.xml
coverage.xml
.pytest_cache/

# Build and docs folder/files
build/*
dist/*
sdist/*
docs/api/*
docs/_rst/*
docs/_build/*
cover/*
MANIFEST

# Per-project virtualenvs
.venv*/
.conda*/
.python-version

.readthedocs.yml

0 → 100644
+23 −0
Original line number Diff line number Diff line
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py

# Build documentation with MkDocs
#mkdocs:
#  configuration: mkdocs.yml

# Optionally build your docs in additional formats such as PDF
formats:
  - pdf

python:
  version: 3.8
  install:
    - requirements: docs/requirements.txt
    - {path: ., method: pip}

AUTHORS.rst

0 → 100644
+5 −0
Original line number Diff line number Diff line
============
Contributors
============

* David M. Rogers <predictivestatmech@gmail.com>

CHANGELOG.rst

0 → 100644
+8 −0
Original line number Diff line number Diff line
=========
Changelog
=========

Version 0.1
===========

- Packaged release - working on Slurm and LSF job schedulers.
Loading