- also ran `pre-commit autoupdate` - https://github.com/asottile/setup-py-upgrade - https://github.com/asottile/setup-cfg-fmt
10 lines
150 B
Python
10 lines
150 B
Python
from setuptools import setup
|
|
|
|
|
|
def main():
|
|
setup(use_scm_version={"write_to": "src/_pytest/_version.py"})
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|