Happy New Year!

Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
This commit is contained in:
Raphaël Barrois
2013-01-02 10:52:26 +01:00
parent a54c1422c7
commit 658ac42850
11 changed files with 34 additions and 10 deletions

22
LICENSE Normal file
View File

@@ -0,0 +1,22 @@
Copyright (c) 2012-2013, Raphaël Barrois
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'python-semanticversion'
copyright = u'2012, Raphaël Barrois'
copyright = u'2012-2013, Raphaël Barrois'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) 2012 Raphaël Barrois
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 Raphaël Barrois
from distutils.core import setup
from distutils import cmd

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2012 Raphaël Barrois
# Copyright (c) 2012-2013 Raphaël Barrois
__version__ = '2.1.2'

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2012 Raphaël Barrois
# Copyright (c) 2012-2013 Raphaël Barrois
import functools

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2012 Raphaël Barrois
# Copyright (c) 2012-2013 Raphaël Barrois
from django.db import models
from django.utils.translation import ugettext_lazy as _

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2012 Raphaël Barrois
# Copyright (c) 2012-2013 Raphaël Barrois
from django.db import models
from semantic_version import django_fields as semver_fields

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) 2012 Raphaël Barrois
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 Raphaël Barrois
"""Test the various functions from 'base'."""

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2012 Raphaël Barrois
# Copyright (c) 2012-2013 Raphaël Barrois
try: # pragma: no cover
import unittest2 as unittest

View File

@@ -1,5 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 Raphaël Barrois
import unittest

View File

@@ -1,5 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 Raphaël Barrois
import unittest