Skip to content

Commit

Permalink
initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
mengu committed Mar 13, 2013
0 parents commit d09baa4
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
global-exclude *.pyc

17 changes: 17 additions & 0 deletions README.rst
@@ -0,0 +1,17 @@
About django_contact_importer
-------------------------

django_contact_importer is a Python package created using the gearbox makepackage command.

Installing
-------------------------------

django_contact_importer can be installed from pypi::

easy_install django_contact_importer

or::

pip install django_contact_importer

should just work for most of the users
1 change: 1 addition & 0 deletions django_contact_importer/__init__.py
@@ -0,0 +1 @@
#
9 changes: 9 additions & 0 deletions setup.cfg
@@ -0,0 +1,9 @@
[metadata]
name = django_contact_importer
version = 0.0.1
author = Unknown
author-email =
summary =
description-file = README.rst
home-page =
#requires-dist =
31 changes: 31 additions & 0 deletions setup.py
@@ -0,0 +1,31 @@
from setuptools import setup, find_packages
import sys, os

here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''

version = "0.0.1"

setup(name='django_contact_importer',
version=version,
description="",
long_description=README,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Unknown',
author_email='',
url='',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)

0 comments on commit d09baa4

Please sign in to comment.