13 lines
252 B
Python
Executable file
13 lines
252 B
Python
Executable file
from setuptools import setup
|
|
|
|
|
|
def local_scheme(version: str) -> str:
|
|
"""Skip the local version (eg. +xyz of 0.6.1.dev4+gdf99fe2)
|
|
to be able to upload to Test PyPI"""
|
|
return ""
|
|
|
|
|
|
setup(
|
|
use_scm_version={"local_scheme": local_scheme},
|
|
)
|