first commit

This commit is contained in:
Benjamin Dauvergne 2014-04-28 11:51:28 +02:00
commit c1f9a4e3d8
15 changed files with 156 additions and 0 deletions

2
COPYING Normal file
View File

@ -0,0 +1,2 @@
{{ project_name }} is entirely under the copyright of Entr'ouvert and distributed
under the license AGPLv3 or later.

1
app_name/__init__.py Normal file
View File

@ -0,0 +1 @@
__version__ = '1.0.0'

3
app_name/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

17
app_name/app_settings.py Normal file
View File

@ -0,0 +1,17 @@
import sys
class AppSettings(object):
__PREFIX = '{{ APP_NAME }}_'
__DEFAULTS = {
}
def __getattr__(self, name):
from django.conf import settings
if name not in self.__DEFAULTS:
raise AttributeError
return getattr(settings, self.__prefix + name, self.__DEFAULTS[name])
app_settings = AppSettings()
app_settings.__name__ = __name__
sys.modules[__name__] = app_settings

View File

View File

3
app_name/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
app_name/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
app_name/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
debian/changelog vendored Normal file
View File

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

16
debian/control vendored Normal file
View File

@ -0,0 +1,16 @@
Source: python-{{ app-name }}
Maintainer: Entr'ouvert <info@entrouvert.com>
Section: python
Priority: optional
Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6), debhelper (>= 7.4.3),
python-django (>= 1.5)
Standards-Version: 3.9.1
X-Python-Version: >= 2.6
Package: python-{{ app-name }}
Architecture: all
Depends: ${misc:Depends},
python (>= 2.6),
python-django (>= 1.5)
Description: FIXME

6
debian/rules vendored Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/make -f
%:
dh $@ --with python2 --buildsystem=python_distutils

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

100
setup.py Executable file
View File

@ -0,0 +1,100 @@
#! /usr/bin/env python
''' Setup script for {{ app-name }}
'''
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 as _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):
import os
import sys
from django.core.management.commands.compilemessages import \
compile_messages
for path in ['{{ app-name }}/']:
if path.endswith('.py'):
continue
curdir = os.getcwd()
os.chdir(os.path.realpath(path))
compile_messages(stderr=sys.stderr)
os.chdir(curdir)
class build(_build):
sub_commands = [('compile_translations', None)] + _build.sub_commands
class sdist(_sdist):
sub_commands = [('compile_translations', None)] + _sdist.sub_commands
class install_lib(_install_lib):
def run(self):
self.run_command('compile_translations')
_install_lib.run(self)
def get_version():
import glob
import re
import os
version = None
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
p = subprocess.Popen(['git','describe','--dirty','--match=v*'],
stdout=subprocess.PIPE)
result = p.communicate()[0]
assert p.returncode == 0, 'git returned non-zero'
new_version = result.split()[0][1:]
assert new_version.split('-')[0] == version, '__version__ must match the last git annotated tag'
version = new_version.replace('-', '.')
return version
setup(name="django-{{ app-name }}",
version=get_version(),
license="AGPLv3 or later",
description="",
url="http://dev.entrouvert.org/projects/django-{{ app-name }}/",
author="Entr'ouvert",
author_email="info@entrouvert.org",
include_package_data=True,
packages=find_packages(),
install_requires=[],
setup_requires=[
'django>=1.6',
],
tests_require=[
'nose>=0.11.4',
],
dependency_links=[],
cmdclass={
'build': build,
'install_lib': install_lib,
'compile_translations': compile_translations,
'sdist': sdist,
},
)