├── .DS_Store ├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── README.md ├── pyproject.toml ├── setup.py └── src └── autodpd ├── __init__.py ├── __pycache__ ├── __init__.cpython-311.pyc ├── autodpd.cpython-310.pyc ├── autodpd.cpython-311.pyc ├── static.cpython-311.pyc └── version.cpython-311.pyc ├── autodpd.py ├── static.py └── version.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tests 2 | src/autodpd.egg-info 3 | build_install.sh 4 | dist 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/setup.py -------------------------------------------------------------------------------- /src/autodpd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/__init__.py -------------------------------------------------------------------------------- /src/autodpd/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /src/autodpd/__pycache__/autodpd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/__pycache__/autodpd.cpython-310.pyc -------------------------------------------------------------------------------- /src/autodpd/__pycache__/autodpd.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/__pycache__/autodpd.cpython-311.pyc -------------------------------------------------------------------------------- /src/autodpd/__pycache__/static.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/__pycache__/static.cpython-311.pyc -------------------------------------------------------------------------------- /src/autodpd/__pycache__/version.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/__pycache__/version.cpython-311.pyc -------------------------------------------------------------------------------- /src/autodpd/autodpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/autodpd.py -------------------------------------------------------------------------------- /src/autodpd/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatDanPeng/AutoDPD/HEAD/src/autodpd/static.py -------------------------------------------------------------------------------- /src/autodpd/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.1" --------------------------------------------------------------------------------