Files
csaxs_bec/setup.py

8 lines
201 B
Python

from setuptools import setup
if __name__ == "__main__":
setup(
install_requires=["pyyaml", "pyepics"],
extras_require={"dev": ["pytest", "pytest-random-order", "coverage"]},
)