This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/setup.py

135 lines
4.0 KiB
Python
Raw Permalink Normal View History

2013-03-15 08:48:57 +01:00
#! /usr/bin/env python
''' Setup script for Polynum
'''
import glob
import re
import sys
import os
2013-03-15 08:48:57 +01:00
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
from distutils.command.sdist import sdist
from distutils.cmd import Command
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.commands.compilemessages import \
compile_messages
for path in ['portail_citoyen2'] + glob.glob('portail_citoyen2/apps/*'):
if path.endswith('.py'):
continue
if not os.path.isdir(os.path.join(path, 'locale')):
continue
curdir = os.getcwd()
os.chdir(os.path.realpath(path))
compile_messages(sys.stderr)
os.chdir(curdir)
except ImportError:
print
sys.stderr.write('!!! Please install Django >= 1.4 to build translations')
print
print
class build(_build):
sub_commands = [('compile_translations', None)] + _build.sub_commands
class install_lib(_install_lib):
def run(self):
self.run_command('compile_translations')
_install_lib.run(self)
2013-03-15 08:48:57 +01:00
class eo_sdist(sdist):
def run(self):
print "creating VERSION file"
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)
print "removing VERSION file"
if os.path.exists('VERSION'):
os.remove('VERSION')
2013-05-13 16:40:25 +02:00
def get_version():
version = None
if os.path.exists('VERSION'):
version_file = open('VERSION', 'r')
version = version_file.read()
2013-08-13 17:20:56 +02:00
version_file.close()
return version
2013-05-13 16:40:25 +02:00
for d in glob.glob('*'):
if not os.path.isdir(d):
continue
module_file = os.path.join(d, '__init__.py')
if not os.path.exists(module_file):
continue
for v in re.findall("""__version__ *= *['"](.*)['"]""",
open(module_file).read()):
assert version is None
version = v
if version:
break
assert version is not None
if os.path.exists('.git'):
import subprocess
2013-05-15 16:11:20 +02:00
p = subprocess.Popen(['git','describe','--dirty','--match=v*'],
2013-05-13 16:40:25 +02:00
stdout=subprocess.PIPE)
result = p.communicate()[0]
assert p.returncode == 0, 'git returned non-zero'
2013-05-15 16:11:20 +02:00
new_version = result.split()[0][1:]
2013-05-13 16:40:25 +02:00
assert new_version.split('-')[0] == version, '__version__ must match the last git annotated tag'
version = new_version.replace('-', '.')
return version
setup(name="portail-citoyen2",
2013-05-13 16:40:25 +02:00
version=get_version(),
2013-03-15 08:48:57 +01:00
license="AGPLv3 or later",
description="Portail citoyen",
url="http://dev.entrouvert.org/projects/portail-citoyen/",
author="Entr'ouvert",
author_email="info@entrouvert.org",
maintainer="Benjamin Dauvergne",
maintainer_email="info@entrouvert.com",
include_package_data=True,
packages=find_packages(),
scripts=('portail-citoyen2',),
2013-11-18 23:53:31 +01:00
setup_requires=[
'django>=1.5.1',
2013-11-18 23:53:31 +01:00
],
2013-03-15 08:48:57 +01:00
install_requires=[
'requests>=2.1',
2013-03-19 16:47:11 +01:00
'feedparser',
'django>=1.5.1,<1.6',
'django-cms>=3',
'python-entrouvert',
2013-12-19 15:28:55 +01:00
'south>=0.8.4',
'djangocms-text-ckeditor',
'django-allauth',
'django-admin-tools',
2013-03-15 08:48:57 +01:00
],
cmdclass={
'build': build,
'install_lib': install_lib,
'compile_translations': compile_translations,
'sdist': eo_sdist
},
2013-03-15 08:48:57 +01:00
)