passerelle-grandlyon-iodas/setup.py

48 lines
1.2 KiB
Python
Raw Permalink Normal View History

2018-02-27 16:23:03 +01:00
#! /usr/bin/env python
import os
import subprocess
2018-02-27 16:23:03 +01:00
from setuptools import setup, find_packages
from distutils.command.sdist import sdist
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')
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 = result.split()[0][1:]
version = version.replace('-', '.')
return version
return '0'
2018-02-27 16:23:03 +01:00
setup(
2018-02-28 09:42:36 +01:00
name='passerelle-grandlyon-iodas',
2018-02-28 09:44:19 +01:00
version=get_version(),
2018-02-27 16:23:03 +01:00
author='Grand Lyon',
author_email='toto@example.net',
url='http://example.net/',
packages=find_packages(),
cmdclass={
'sdist': eo_sdist,
}
2018-02-27 16:23:03 +01:00
)