Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

12 lines
205 B
Python

from setuptools import setup
def get_version():
with open("VERSION", encoding="utf-8") as version:
return version.read().replace("-", ".dev", 1).strip()
setup(
version=get_version(),
)