14 lines
399 B
Python
14 lines
399 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
import versioneer
|
|
|
|
setup(name='git-version',
|
|
version=versioneer.get_version(),
|
|
cmdclass=versioneer.get_cmdclass(),
|
|
description='Make git version information (e.g. git tag name, git commit id, ...) available to C++ source files.',
|
|
author='Sebastian Messmer',
|
|
author_email='messmer@cryfs.org',
|
|
license='LGPLv3'
|
|
)
|