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