python-datamodel 0.10.19__tar.gz → 0.10.21__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- python_datamodel-0.10.21/.flake8 +6 -0
- python_datamodel-0.10.21/.github/dependabot.yml +6 -0
- python_datamodel-0.10.21/.github/workflows/release.yml +121 -0
- python_datamodel-0.10.21/.gitignore +134 -0
- python_datamodel-0.10.21/.isort.cfg +5 -0
- python_datamodel-0.10.21/.pylintrc +619 -0
- python_datamodel-0.10.21/.readthedocs.yml +18 -0
- python_datamodel-0.10.21/CODE_OF_CONDUCT.md +46 -0
- python_datamodel-0.10.21/Cargo.lock +1053 -0
- python_datamodel-0.10.21/Cargo.toml +33 -0
- python_datamodel-0.10.21/INSTALL.md +17 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/PKG-INFO +10 -12
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/version.py +1 -1
- python_datamodel-0.10.21/locale/de_DE/LC_MESSAGES/nav.po +36 -0
- python_datamodel-0.10.21/locale/en_US/LC_MESSAGES/nav.po +36 -0
- python_datamodel-0.10.21/locale/es_ES/LC_MESSAGES/nav.po +36 -0
- python_datamodel-0.10.21/locale/fr_FR/LC_MESSAGES/nav.po +36 -0
- python_datamodel-0.10.21/locale/it_IT/LC_MESSAGES/nav.po +39 -0
- python_datamodel-0.10.21/mypy.ini +2 -0
- python_datamodel-0.10.21/pyproject.toml +127 -0
- python_datamodel-0.10.21/pytest.ini +4 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/python_datamodel.egg-info/PKG-INFO +10 -12
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/python_datamodel.egg-info/SOURCES.txt +20 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/python_datamodel.egg-info/requires.txt +3 -1
- python_datamodel-0.10.21/python_datamodel.egg-info/top_level.txt +1 -0
- python_datamodel-0.10.21/setup.py +98 -0
- python_datamodel-0.10.21/tests/__init__.py +0 -0
- python_datamodel-0.10.21/tox.ini +50 -0
- python_datamodel-0.10.19/pyproject.toml +0 -91
- python_datamodel-0.10.19/python_datamodel.egg-info/top_level.txt +0 -5
- python_datamodel-0.10.19/setup.py +0 -210
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/CHANGELOG.md +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/CONTRIBUTING.md +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/LICENSE +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/MANIFEST.in +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/Makefile +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/README.md +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/SECURITY.md +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/abstract.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/adaptive/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/adaptive/models.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/aliases/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/base.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/converters.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/converters.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/converters.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/exceptions.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/exceptions.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/exceptions.pxd +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/exceptions.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/fields.cpp +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/fields.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/fields.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/functions.cpp +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/functions.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/functions.pxd +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/functions.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/jsonld/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/jsonld/models.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/libs/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/libs/mapping.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/libs/mapping.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/libs/mapping.pxd +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/libs/mapping.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/libs/mutables.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/models.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/parsers/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/parsers/encoders.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/parsers/json.cpp +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/parsers/json.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/parsers/json.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/profiler.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/py.typed +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/rs_core/Cargo.toml +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/rs_core/src/lib.rs +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/rs_parsers/Cargo.toml +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/rs_parsers/src/lib.rs +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/rs_validators/Cargo.toml +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/rs_validators/src/lib.rs +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/__init__.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/singleton.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/singleton.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/singleton.pxd +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/singleton.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/types.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/types.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/types.pxd +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/typedefs/types.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/types.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/types.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/types.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/validation.c +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/validation.html +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/validation.pxd +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/datamodel/validation.pyx +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/python_datamodel.egg-info/dependency_links.txt +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/python_datamodel.egg-info/not-zip-safe +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/setup.cfg +0 -0
- /python_datamodel-0.10.19/tests/__init__.py → /python_datamodel-0.10.21/src/lib.rs +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_aliases.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_classdict.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_container.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_converter.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_dashboards.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_data.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_descriptors.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_dict.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_field.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_generic.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_inherit.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_json.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_method.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_model.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_notify.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_primitives.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_qsdriver.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_qsmodel.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_qsobject.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_ticket.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_tickets.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_tuples.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_type_user.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_types.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_unions.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_valid_callables.py +0 -0
- {python_datamodel-0.10.19 → python_datamodel-0.10.21}/tests/test_validations.py +0 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
name: Python package build and publish
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [created]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
build:
|
|
9
|
+
runs-on: ${{ matrix.os }}
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
os: [ubuntu-latest, windows-latest]
|
|
13
|
+
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- name: Set up Python (Linux)
|
|
18
|
+
if: matrix.os == 'ubuntu-latest'
|
|
19
|
+
uses: actions/setup-python@v4
|
|
20
|
+
with:
|
|
21
|
+
python-version: "3.11"
|
|
22
|
+
|
|
23
|
+
- name: Set up Python (Windows)
|
|
24
|
+
if: matrix.os == 'windows-latest'
|
|
25
|
+
uses: actions/setup-python@v4
|
|
26
|
+
with:
|
|
27
|
+
python-version: ${{ matrix.python-version }}
|
|
28
|
+
|
|
29
|
+
- name: Install Rust
|
|
30
|
+
uses: actions-rs/toolchain@v1
|
|
31
|
+
with:
|
|
32
|
+
profile: minimal
|
|
33
|
+
toolchain: stable
|
|
34
|
+
override: true
|
|
35
|
+
|
|
36
|
+
- name: Add Rust to PATH
|
|
37
|
+
run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
|
38
|
+
|
|
39
|
+
- name: Install dependencies
|
|
40
|
+
run: |
|
|
41
|
+
python -m pip install pip
|
|
42
|
+
pip install cibuildwheel maturin twine cython
|
|
43
|
+
|
|
44
|
+
- name: Build wheels on Ubuntu
|
|
45
|
+
if: matrix.os == 'ubuntu-latest'
|
|
46
|
+
env:
|
|
47
|
+
CIBW_ARCHS: x86_64
|
|
48
|
+
# Install Rust inside the manylinux container.
|
|
49
|
+
CIBW_BEFORE_BUILD: "curl https://sh.rustup.rs -sSf | sh -s -- -y"
|
|
50
|
+
# Make sure Rust tools are on the PATH for the build.
|
|
51
|
+
CIBW_ENVIRONMENT: "PATH=/root/.cargo/bin:$PATH"
|
|
52
|
+
RUST_SUBPACKAGE_PATH: datamodel/rs_parsers
|
|
53
|
+
CIBW_BUILD: "cp3{10,11,12,13}-*" # Build for Python 3.10, 3.11, 3.12, 3.13
|
|
54
|
+
run: |
|
|
55
|
+
pip install --upgrade pip==25.0
|
|
56
|
+
pip install cibuildwheel
|
|
57
|
+
cibuildwheel --platform linux --output-dir dist
|
|
58
|
+
|
|
59
|
+
- name: Build wheels on Windows
|
|
60
|
+
if: matrix.os == 'windows-latest'
|
|
61
|
+
env:
|
|
62
|
+
CIBW_BUILD: "cp3{10,11,12,13}-*"
|
|
63
|
+
run: |
|
|
64
|
+
pip install cibuildwheel maturin
|
|
65
|
+
cibuildwheel --output-dir dist
|
|
66
|
+
|
|
67
|
+
- name: Upload wheel artifacts
|
|
68
|
+
uses: actions/upload-artifact@v4
|
|
69
|
+
with:
|
|
70
|
+
name: wheels-${{ matrix.os }}-py${{ matrix.python-version }}
|
|
71
|
+
path: dist/*.whl
|
|
72
|
+
|
|
73
|
+
deploy:
|
|
74
|
+
needs: build
|
|
75
|
+
runs-on: ubuntu-latest
|
|
76
|
+
steps:
|
|
77
|
+
- uses: actions/checkout@v4
|
|
78
|
+
|
|
79
|
+
- name: Download all artifacts
|
|
80
|
+
uses: actions/download-artifact@v4.1.7
|
|
81
|
+
with:
|
|
82
|
+
path: dist
|
|
83
|
+
|
|
84
|
+
- name: Move wheel files to 'dist' directory
|
|
85
|
+
run: |
|
|
86
|
+
find dist -name '*.whl' -exec mv {} dist \;
|
|
87
|
+
|
|
88
|
+
- name: Build sdist
|
|
89
|
+
run: |
|
|
90
|
+
pip install build
|
|
91
|
+
python -m build --sdist --outdir dist
|
|
92
|
+
|
|
93
|
+
- name: Check for wheel types
|
|
94
|
+
id: check_wheels
|
|
95
|
+
run: |
|
|
96
|
+
echo "Checking for wheel types..."
|
|
97
|
+
if ls dist/*-manylinux*.whl 1> /dev/null 2>&1; then
|
|
98
|
+
echo "Found manylinux wheels."
|
|
99
|
+
echo "HAS_MANYLINUX_WHEELS=true" >> $GITHUB_ENV
|
|
100
|
+
fi
|
|
101
|
+
if ls dist/*-win_*.whl 1> /dev/null 2>&1; then
|
|
102
|
+
echo "Found Windows wheels."
|
|
103
|
+
echo "HAS_WINDOWS_WHEELS=true" >> $GITHUB_ENV
|
|
104
|
+
fi
|
|
105
|
+
|
|
106
|
+
- name: List files in dist
|
|
107
|
+
run: ls -l dist
|
|
108
|
+
|
|
109
|
+
- name: Set up Python
|
|
110
|
+
uses: actions/setup-python@v4
|
|
111
|
+
with:
|
|
112
|
+
python-version: '3.x'
|
|
113
|
+
|
|
114
|
+
- name: Install twine
|
|
115
|
+
run: pip install twine
|
|
116
|
+
|
|
117
|
+
- name: Publish wheels and sdist to Production PyPI
|
|
118
|
+
env:
|
|
119
|
+
TWINE_USERNAME: __token__
|
|
120
|
+
TWINE_PASSWORD: ${{ secrets.PYTHON_DATAMODEL_PYPI_API_TOKEN }}
|
|
121
|
+
run: twine upload dist/*.whl dist/*.tar.gz || true
|
|
@@ -0,0 +1,134 @@
|
|
|
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
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
pip-wheel-metadata/
|
|
24
|
+
share/python-wheels/
|
|
25
|
+
*.egg-info/
|
|
26
|
+
.installed.cfg
|
|
27
|
+
*.egg
|
|
28
|
+
MANIFEST
|
|
29
|
+
|
|
30
|
+
# PyInstaller
|
|
31
|
+
# Usually these files are written by a python script from a template
|
|
32
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
33
|
+
*.manifest
|
|
34
|
+
*.spec
|
|
35
|
+
|
|
36
|
+
# Installer logs
|
|
37
|
+
pip-log.txt
|
|
38
|
+
pip-delete-this-directory.txt
|
|
39
|
+
|
|
40
|
+
# Unit test / coverage reports
|
|
41
|
+
htmlcov/
|
|
42
|
+
.tox/
|
|
43
|
+
.nox/
|
|
44
|
+
.coverage
|
|
45
|
+
.coverage.*
|
|
46
|
+
.cache
|
|
47
|
+
nosetests.xml
|
|
48
|
+
coverage.xml
|
|
49
|
+
*.cover
|
|
50
|
+
*.py,cover
|
|
51
|
+
.hypothesis/
|
|
52
|
+
.pytest_cache/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
target/
|
|
76
|
+
|
|
77
|
+
# Jupyter Notebook
|
|
78
|
+
.ipynb_checkpoints
|
|
79
|
+
|
|
80
|
+
# IPython
|
|
81
|
+
profile_default/
|
|
82
|
+
ipython_config.py
|
|
83
|
+
|
|
84
|
+
# pyenv
|
|
85
|
+
.python-version
|
|
86
|
+
|
|
87
|
+
# pipenv
|
|
88
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
89
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
90
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
91
|
+
# install all needed dependencies.
|
|
92
|
+
#Pipfile.lock
|
|
93
|
+
|
|
94
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
95
|
+
__pypackages__/
|
|
96
|
+
|
|
97
|
+
# Celery stuff
|
|
98
|
+
celerybeat-schedule
|
|
99
|
+
celerybeat.pid
|
|
100
|
+
|
|
101
|
+
# SageMath parsed files
|
|
102
|
+
*.sage.py
|
|
103
|
+
|
|
104
|
+
# Environments
|
|
105
|
+
.env
|
|
106
|
+
.venv
|
|
107
|
+
env/
|
|
108
|
+
venv/
|
|
109
|
+
ENV/
|
|
110
|
+
env.bak/
|
|
111
|
+
venv.bak/
|
|
112
|
+
|
|
113
|
+
# Spyder project settings
|
|
114
|
+
.spyderproject
|
|
115
|
+
.spyproject
|
|
116
|
+
|
|
117
|
+
# Rope project settings
|
|
118
|
+
.ropeproject
|
|
119
|
+
|
|
120
|
+
# mkdocs documentation
|
|
121
|
+
/site
|
|
122
|
+
|
|
123
|
+
# mypy
|
|
124
|
+
.mypy_cache/
|
|
125
|
+
.dmypy.json
|
|
126
|
+
dmypy.json
|
|
127
|
+
|
|
128
|
+
# Pyre type checker
|
|
129
|
+
.pyre/
|
|
130
|
+
|
|
131
|
+
## C-objects
|
|
132
|
+
*.c
|
|
133
|
+
*.cpp
|
|
134
|
+
examples/reward.py
|