docbow/setup.py

121 lines
3.5 KiB
Python
Raw Permalink Normal View History

#!env python
2015-03-12 11:43:50 +01:00
import subprocess
2014-05-05 15:08:16 +02:00
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.install_lib import install_lib as _install_lib
from distutils.command.build import build as _build
2019-03-06 17:13:10 +01:00
from setuptools.command.sdist import sdist
from distutils.cmd import Command
2016-03-14 14:33:38 +01:00
2019-03-06 17:13:10 +01:00
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():
2021-02-24 11:54:53 +01:00
"""Use the VERSION, if absent generates a version with git describe, if not
tag exists, take 0.0- and add the length of the commit log.
"""
2019-03-06 17:13:10 +01:00
if os.path.exists('VERSION'):
with open('VERSION', 'r') as v:
return v.read()
if os.path.exists('.git'):
p = subprocess.Popen(
['git', 'describe', '--dirty=.dirty', '--match=v*'],
2020-12-09 15:22:51 +01:00
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
2019-03-06 17:13:10 +01:00
result = p.communicate()[0]
if p.returncode == 0:
result = result.decode('ascii').strip()[1:] # strip spaces/newlines and initial v
if '-' in result: # not a tagged version
real_number, commit_count, commit_hash = result.split('-', 2)
version = '%s.post%s+%s' % (real_number, commit_count, commit_hash)
2019-03-06 17:13:10 +01:00
else:
version = result
return version
else:
2020-12-09 15:22:51 +01:00
return '0.0.post%s' % len(subprocess.check_output(['git', 'rev-list', 'HEAD']).splitlines())
2019-03-06 17:13:10 +01:00
return '0.0'
class compile_translations(Command):
description = 'compile message catalogs to MO files via django compilemessages'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
2016-03-14 14:33:38 +01:00
try:
from django.core.management import call_command
2020-12-09 15:22:51 +01:00
2019-03-06 17:13:10 +01:00
for path, dirs, files in os.walk('docbow_project'):
if 'locale' not in dirs:
continue
curdir = os.getcwd()
os.chdir(os.path.realpath(path))
call_command('compilemessages')
os.chdir(curdir)
2016-03-14 14:33:38 +01:00
except ImportError:
2019-03-06 17:13:10 +01:00
sys.stderr.write('!!! Please install Django >= 1.4 to build translations\n')
2016-03-14 14:33:38 +01:00
class build(_build):
sub_commands = [('compile_translations', None)] + _build.sub_commands
2016-03-14 14:33:38 +01:00
class install_lib(_install_lib):
def run(self):
self.run_command('compile_translations')
_install_lib.run(self)
2016-03-14 14:33:38 +01:00
2020-12-09 15:22:51 +01:00
setup(
name='docbow',
version=get_version(),
license='AGPL 3.0',
description='Document box for the Wallon Parliament',
url='https://dev.entrouvert.org/projects/docbow-pub/',
author="Entr'ouvert",
author_email='info@entrouvert.com',
maintainer='Benjamin Dauvergne',
maintainer_email='bdauvergne@entrouvert.com',
include_package_data=True,
scripts=('manage.py',),
packages=find_packages(),
install_requires=[
'django>=2.2, <3.3',
2020-12-09 15:22:51 +01:00
'typing', # For M2Crypto.util
'gunicorn',
'django_journal>=2.0.0',
'django-picklefield',
2020-12-09 15:22:51 +01:00
'django-tables2',
'requests',
'python-magic',
'django-watson',
'sqlalchemy<1.4',
2020-12-09 15:22:51 +01:00
],
cmdclass={
'build': build,
'install_lib': install_lib,
'compile_translations': compile_translations,
'sdist': eo_sdist,
},
)