File: setup.py

package info (click to toggle)
python-pytest-xprocess 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: python: 756; makefile: 25; sh: 10
file content (8 lines) | stat: -rwxr-xr-x 206 bytes parent folder | download
1
2
3
4
5
6
7
8
from setuptools import setup

if __name__ == "__main__":
    setup(
        name="pytest-xprocess",
        # this is for GitHub's dependency graph
        install_requires=["pytest>=2.8", "psutil"],
    )