mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 12:44:38 +03:00
13 lines
308 B
Python
13 lines
308 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
use_scm_version={
|
|
"write_to": "aqt/version.py",
|
|
"write_to_template": '__version__ = "{version}"\n',
|
|
"tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
|
|
"local_scheme": "no-local-version",
|
|
}
|
|
)
|