passerelle-minint/setup.py

54 lines
1.3 KiB
Python

#! /usr/bin/env python
import os
import subprocess
from setuptools import setup, find_packages
from distutils.command.sdist import sdist
def get_version():
if os.path.exists('VERSION'):
version_file = open('VERSION', 'r')
version = version_file.read()
version_file.close()
return version
if os.path.exists('.git'):
p = subprocess.Popen(['git', 'describe', '--dirty', '--match=v*'], stdout=subprocess.PIPE)
result = p.communicate()[0]
if p.returncode == 0:
version = str(result.split()[0][1:])
version = version.replace('-', '.')
return version
return '0'
class eo_sdist(sdist):
def run(self):
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
version_file = open('VERSION', 'w')
version_file.write(version)
version_file.close()
sdist.run(self)
if os.path.exists('VERSION'):
os.remove('VERSION')
setup(
name='passerelle-minint',
version=get_version(),
author="Entr'ouvert",
author_email='info@entrouvert.com',
packages=find_packages(os.path.dirname(__file__) or '.'),
include_package_data=True,
install_requires=[
'suds-jurko'
],
cmdclass={
'sdist': eo_sdist,
}
)