[Python-modules-commits] [python-django-contact-form] 04/08: Imported Upstream version 1.2~git23.8413069

Andrew Starr-Bochicchio asb at moszumanska.debian.org
Fri Dec 25 19:20:35 UTC 2015


This is an automated email from the git hooks/post-receive script.

asb pushed a commit to branch master
in repository python-django-contact-form.

commit 2b0d7d0d3769a95e75ef3c8e573144bc7ed1bc28
Author: Andrew Starr-Bochicchio <a.starr.b at gmail.com>
Date:   Fri Dec 25 14:03:08 2015 -0500

    Imported Upstream version 1.2~git23.8413069
---
 .gitignore                                        |  5 ++++
 .travis.yml                                       | 22 ++++++++++++++++
 PKG-INFO                                          | 31 -----------------------
 contact_form/models.py                            |  3 ---
 django_contact_form.egg-info/PKG-INFO             | 31 -----------------------
 django_contact_form.egg-info/SOURCES.txt          | 27 --------------------
 django_contact_form.egg-info/dependency_links.txt |  1 -
 django_contact_form.egg-info/not-zip-safe         |  1 -
 django_contact_form.egg-info/top_level.txt        |  1 -
 9 files changed, 27 insertions(+), 95 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..462e3e6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+*.pyc
+__pycache__
+*.egg-info
+docs/_build/
+.coverage
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..b1d7e0f
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,22 @@
+language: python
+sudo: false
+python:
+ - "3.5"
+ - "3.4"
+ - "3.3"
+ - "2.7"
+env:
+ - DJANGO_VERSION=1.8.7
+ - DJANGO_VERSION=1.9
+install:
+ - pip install coverage>=4.0
+ - pip install flake8
+ - pip install -q Django==$DJANGO_VERSION
+matrix:
+ exclude:
+  - python: "3.3"
+    env: DJANGO_VERSION=1.9
+script:
+ - coverage run setup.py test
+ - flake8 contact_form
+ - coverage report -m
diff --git a/PKG-INFO b/PKG-INFO
deleted file mode 100644
index a6d3a08..0000000
--- a/PKG-INFO
+++ /dev/null
@@ -1,31 +0,0 @@
-Metadata-Version: 1.1
-Name: django-contact-form
-Version: 1.1
-Summary: Generic contact-form application for Django
-Home-page: https://github.com/ubernostrum/django-contact-form/
-Author: James Bennett
-Author-email: james at b-list.org
-License: UNKNOWN
-Description: .. -*-restructuredtext-*-
-        
-        This application provids simple, extensible contact-form functionality
-        for `Django <https://www.djangoproject.com/>`_ sites.
-        
-        Full documentation for all functionality is included and is also
-        `available online <http://django-contact-form.readthedocs.org/>`_.
-Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: Environment :: Web Environment
-Classifier: Framework :: Django
-Classifier: Framework :: Django :: 1.7
-Classifier: Framework :: Django :: 1.8
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved :: BSD License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Topic :: Utilities
diff --git a/contact_form/models.py b/contact_form/models.py
deleted file mode 100644
index 815b221..0000000
--- a/contact_form/models.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# This application provides no models, but some versions of Django
-# require a models.py to exist in order to run tests in the
-# application.
diff --git a/django_contact_form.egg-info/PKG-INFO b/django_contact_form.egg-info/PKG-INFO
deleted file mode 100644
index a6d3a08..0000000
--- a/django_contact_form.egg-info/PKG-INFO
+++ /dev/null
@@ -1,31 +0,0 @@
-Metadata-Version: 1.1
-Name: django-contact-form
-Version: 1.1
-Summary: Generic contact-form application for Django
-Home-page: https://github.com/ubernostrum/django-contact-form/
-Author: James Bennett
-Author-email: james at b-list.org
-License: UNKNOWN
-Description: .. -*-restructuredtext-*-
-        
-        This application provids simple, extensible contact-form functionality
-        for `Django <https://www.djangoproject.com/>`_ sites.
-        
-        Full documentation for all functionality is included and is also
-        `available online <http://django-contact-form.readthedocs.org/>`_.
-Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: Environment :: Web Environment
-Classifier: Framework :: Django
-Classifier: Framework :: Django :: 1.7
-Classifier: Framework :: Django :: 1.8
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved :: BSD License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Topic :: Utilities
diff --git a/django_contact_form.egg-info/SOURCES.txt b/django_contact_form.egg-info/SOURCES.txt
deleted file mode 100644
index 22e3603..0000000
--- a/django_contact_form.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-LICENSE
-MANIFEST.in
-README.rst
-setup.py
-contact_form/__init__.py
-contact_form/forms.py
-contact_form/models.py
-contact_form/runtests.py
-contact_form/urls.py
-contact_form/views.py
-contact_form/tests/__init__.py
-contact_form/tests/test_forms.py
-contact_form/tests/test_urls.py
-contact_form/tests/test_views.py
-django_contact_form.egg-info/PKG-INFO
-django_contact_form.egg-info/SOURCES.txt
-django_contact_form.egg-info/dependency_links.txt
-django_contact_form.egg-info/not-zip-safe
-django_contact_form.egg-info/top_level.txt
-docs/Makefile
-docs/conf.py
-docs/faq.rst
-docs/forms.rst
-docs/index.rst
-docs/install.rst
-docs/make.bat
-docs/views.rst
\ No newline at end of file
diff --git a/django_contact_form.egg-info/dependency_links.txt b/django_contact_form.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/django_contact_form.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/django_contact_form.egg-info/not-zip-safe b/django_contact_form.egg-info/not-zip-safe
deleted file mode 100644
index 8b13789..0000000
--- a/django_contact_form.egg-info/not-zip-safe
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/django_contact_form.egg-info/top_level.txt b/django_contact_form.egg-info/top_level.txt
deleted file mode 100644
index f78a63b..0000000
--- a/django_contact_form.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-contact_form

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-contact-form.git



More information about the Python-modules-commits mailing list