Skip to content

Commit e629bca

Browse files
committed
initial commit
0 parents  commit e629bca

27 files changed

+3047
-0
lines changed

.codecov.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# show coverage in CI status, not as a comment.
2+
comment: off
3+
coverage:
4+
status:
5+
project:
6+
default:
7+
target: auto
8+
patch:
9+
default:
10+
target: auto

.coveragerc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[run]
2+
source =
3+
diffpy/pdfitc_api_tools
4+
[report]
5+
omit =
6+
*/python?.?/*
7+
*/site-packages/nose/*
8+
# ignore _version.py and versioneer.py
9+
.*version.*
10+
*_version.py
11+
12+
exclude_lines =
13+
if __name__ == '__main__':

.flake8

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[flake8]
2+
exclude =
3+
.git,
4+
__pycache__,
5+
build,
6+
dist,
7+
versioneer.py,
8+
diffpy/pdfitc_api_tools/_version.py,
9+
docs/source/conf.py
10+
max-line-length = 115
11+
# Ignore some style 'errors' produced while formatting by 'black'
12+
ignore = E203, W503

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
diffpy/pdfitc_api_tools/_version.py export-subst

.github/workflows/docs.yml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Build Documentation
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
build_docs:
10+
# pull requests are a duplicate of a branch push if within the same repo.
11+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ["3.10"]
17+
fail-fast: false
18+
19+
defaults:
20+
run:
21+
shell: bash -l {0}
22+
23+
steps:
24+
- name: Set env vars
25+
run: |
26+
export REPOSITORY_NAME=${GITHUB_REPOSITORY#*/} # just the repo, as opposed to org/repo
27+
echo "REPOSITORY_NAME=${REPOSITORY_NAME}" >> $GITHUB_ENV
28+
29+
- name: Checkout the code
30+
uses: actions/checkout@v3
31+
with:
32+
fetch-depth: 1000 # should be enough to reach the most recent tag
33+
34+
- name: Set up Python ${{ matrix.python-version }}
35+
uses: actions/setup-python@v4
36+
with:
37+
python-version: ${{ matrix.python-version }}
38+
39+
- name: Install documentation-building requirements
40+
run: |
41+
# For reference: https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html.
42+
set -vxeuo pipefail
43+
44+
# These packages are installed in the base environment but may be older
45+
# versions. Explicitly upgrade them because they often create
46+
# installation problems if out of date.
47+
python -m pip install --upgrade pip setuptools numpy
48+
49+
pip install .
50+
pip install -r requirements-dev.txt
51+
pip list
52+
53+
- name: Build Docs
54+
run: make -C docs/ html
55+
56+
- uses: actions/upload-artifact@v3
57+
with:
58+
name: ${{ env.REPOSITORY_NAME }}-docs
59+
path: docs/build/html/

.github/workflows/pre-commit.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: pre-commit
2+
3+
on:
4+
pull_request:
5+
push:
6+
workflow_dispatch:
7+
8+
jobs:
9+
pre-commit:
10+
# pull requests are a duplicate of a branch push if within the same repo.
11+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
12+
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-python@v4
17+
- uses: pre-commit/[email protected]
18+
with:
19+
extra_args: --all-files

.github/workflows/publish-pypi.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# This workflow will upload a Python Package using flit when a release is
2+
# created. For more information see:
3+
# https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
4+
5+
name: PyPI upload
6+
7+
on:
8+
release:
9+
types: [created]
10+
11+
jobs:
12+
publish_pypi:
13+
name: Publish package to PyPI
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: '3.x'
25+
26+
- name: Install dependencies
27+
run: |
28+
python -m pip install --upgrade pip
29+
pip install wheel twine setuptools
30+
31+
- name: Build and publish
32+
env:
33+
TWINE_USERNAME: __token__
34+
# The PYPI_PASSWORD must be a pypi token with the "pypi-" prefix with sufficient permissions to upload this package
35+
# https://pypi.org/help/#apitoken
36+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
37+
run: |
38+
python setup.py sdist bdist_wheel
39+
twine upload dist/*

.github/workflows/testing.yml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Unit Tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
# schedule:
8+
# - cron: '00 4 * * *' # daily at 4AM
9+
10+
jobs:
11+
run_tests:
12+
# pull requests are a duplicate of a branch push if within the same repo.
13+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
14+
15+
runs-on: ${{ matrix.host-os }}
16+
strategy:
17+
matrix:
18+
host-os: ["ubuntu-latest"]
19+
# host-os: ["ubuntu-latest", "macos-latest", "windows-latest"]
20+
python-version: ["3.8", "3.9", "3.10"]
21+
fail-fast: false
22+
23+
defaults:
24+
run:
25+
shell: bash -l {0}
26+
27+
steps:
28+
- name: Set env vars
29+
run: |
30+
export REPOSITORY_NAME=${GITHUB_REPOSITORY#*/} # just the repo, as opposed to org/repo
31+
echo "REPOSITORY_NAME=${REPOSITORY_NAME}" >> $GITHUB_ENV
32+
33+
- name: Checkout the code
34+
uses: actions/checkout@v3
35+
36+
- name: Set up Python ${{ matrix.python-version }}
37+
uses: actions/setup-python@v4
38+
with:
39+
python-version: ${{ matrix.python-version }}
40+
41+
- name: Install dependencies
42+
run: |
43+
# For reference: https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html.
44+
set -vxeuo pipefail
45+
46+
# These packages are installed in the base environment but may be older
47+
# versions. Explicitly upgrade them because they often create
48+
# installation problems if out of date.
49+
python -m pip install --upgrade pip setuptools numpy
50+
51+
pip install .
52+
pip install -r requirements-dev.txt
53+
pip list
54+
55+
- name: Test with pytest
56+
run: |
57+
set -vxeuo pipefail
58+
coverage run -m pytest -vv -s
59+
coverage report -m

.gitignore

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
venv/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Django stuff:
54+
*.log
55+
56+
# Sphinx documentation
57+
docs/build/
58+
docs/source/generated/
59+
60+
# pytest
61+
.pytest_cache/
62+
63+
# PyBuilder
64+
target/
65+
66+
# Editor files
67+
# mac
68+
.DS_Store
69+
*~
70+
71+
# vim
72+
*.swp
73+
*.swo
74+
75+
# pycharm
76+
.idea/
77+
78+
# VSCode
79+
.vscode/
80+
81+
# Ipython Notebook
82+
.ipynb_checkpoints

.isort.cfg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[settings]
2+
line_length = 115
3+
multi_line_output = 3
4+
include_trailing_comma = True

.pre-commit-config.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
default_language_version:
2+
python: python3
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v4.4.0
6+
hooks:
7+
- id: check-yaml
8+
- id: end-of-file-fixer
9+
- id: trailing-whitespace
10+
- repo: https://github.com/ambv/black
11+
rev: 23.3.0
12+
hooks:
13+
- id: black
14+
- repo: https://github.com/pycqa/flake8
15+
rev: 6.0.0
16+
hooks:
17+
- id: flake8
18+
- repo: https://github.com/pycqa/isort
19+
rev: 5.12.0
20+
hooks:
21+
- id: isort
22+
args: ["--profile", "black"]
23+
- repo: https://github.com/kynan/nbstripout
24+
rev: 0.6.1
25+
hooks:
26+
- id: nbstripout

AUTHORS.rst

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
=======
2+
Credits
3+
=======
4+
5+
Maintainer
6+
----------
7+
8+
9+
10+
Contributors
11+
------------
12+
13+
None yet. Why not be the first? See: CONTRIBUTING.rst

0 commit comments

Comments
 (0)