Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
Created by pythonpackages.com
Browse files Browse the repository at this point in the history
  • Loading branch information
aclark4life committed Aug 2, 2012
0 parents commit ab2a155
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include *
recursive-include docs *
recursive-include org_repos_cloner *
1 change: 1 addition & 0 deletions org_repos_cloner/__init__.py
@@ -0,0 +1 @@
#
26 changes: 26 additions & 0 deletions setup.py
@@ -0,0 +1,26 @@
from setuptools import setup, find_packages
import sys, os

version = '0.0'

setup(name='org_repos_cloner',
version=version,
description="",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='None',
author_email='None',
url='https://github.com/plone/org_repos_cloner',
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 ab2a155

Please sign in to comment.