fargo/setup.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
3.8 KiB
Python
Raw Permalink Normal View History

2015-02-11 10:48:58 +01:00
#! /usr/bin/env python
import os
2015-03-05 23:47:42 +01:00
import subprocess
2016-02-13 16:17:18 +01:00
import sys
2021-11-29 13:41:48 +01:00
from distutils.cmd import Command
from distutils.command.build import build as _build
2021-11-29 13:41:48 +01:00
from setuptools import find_packages, setup
2015-02-11 10:48:58 +01:00
from setuptools.command.install_lib import install_lib as _install_lib
2016-03-13 01:40:31 +01:00
from setuptools.command.sdist import sdist
2016-03-12 19:24:15 +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')
2016-03-12 19:24:15 +01:00
def get_version():
"""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.
2021-01-11 20:02:29 +01:00
"""
if os.path.exists('VERSION'):
2021-11-29 13:41:48 +01:00
with open('VERSION') as v:
return v.read()
if os.path.exists('.git'):
p = subprocess.Popen(
['git', 'describe', '--dirty=.dirty', '--match=v*'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
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)
else:
version = result
return version
else:
return '0.0.post%s' % len(subprocess.check_output(['git', 'rev-list', 'HEAD']).splitlines())
return '0.0'
2015-02-11 10:48:58 +01:00
2016-03-12 19:24:15 +01:00
2015-02-11 10:48:58 +01:00
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):
try:
from django.core.management import call_command
2021-01-11 20:02:29 +01:00
for path, dirs, files in os.walk('fargo'):
if 'locale' not in dirs:
continue
curdir = os.getcwd()
os.chdir(os.path.realpath(path))
call_command('compilemessages')
os.chdir(curdir)
except ImportError:
sys.stderr.write('!!! Please install Django >= 1.4 to build translations\n')
2015-02-11 10:48:58 +01:00
class build(_build):
sub_commands = [('compile_translations', None)] + _build.sub_commands
2015-03-05 23:47:42 +01:00
2015-02-11 10:48:58 +01:00
class install_lib(_install_lib):
def run(self):
self.run_command('compile_translations')
_install_lib.run(self)
setup(
name='fargo',
version=get_version(),
description='Document Box',
long_description=open('README').read(),
author="Entr'ouvert",
author_email='info@entrouvert.com',
packages=find_packages(),
include_package_data=True,
scripts=('manage.py',),
url='https://dev.entrouvert.org/projects/fargo/',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
2016-03-12 19:24:15 +01:00
install_requires=[
'django>=2.2,<3.3',
'gadjo',
'django-tables2>=1.5,<2.5',
'django-filter>1,<23.2',
'djangorestframework>=3.4',
'python-magic',
'requests',
'sorl-thumbnail',
2016-03-12 19:24:15 +01:00
],
zip_safe=False,
cmdclass={
'build': build,
'compile_translations': compile_translations,
'install_lib': install_lib,
'sdist': eo_sdist,
},
2015-02-11 10:48:58 +01:00
)