7 lines
137 B
Python
7 lines
137 B
Python
from setuptools import setup
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
use_scm_version={"write_to": "src/xdist/_version.py"},
|
|
)
|