8 lines
190 B
Python
8 lines
190 B
Python
from setuptools import setup
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
install_requires=["pyyaml"],
|
|
extras_require={"dev": ["pytest", "pytest-random-order", "coverage"]},
|
|
)
|