File: setup.py

package info (click to toggle)
pytest-snapshot 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 236 kB
  • sloc: python: 1,005; sh: 17; makefile: 16
file content (9 lines) | stat: -rw-r--r-- 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
# This file is required for tox and setuptools-scm<6.2.
from setuptools import setup


setup(
    name='pytest-snapshot',  # This line is only needed to make the Github dependency graph work
    packages=['pytest_snapshot'],  # This line is only needed to make the Github dependency graph work
    use_scm_version={"write_to": "pytest_snapshot/_version.py"},
)