Imported from SVN by Bitbucket

This commit is contained in:
2015-03-31 20:26:20 +00:00
committed by bitbucket
commit ceb7984dec
212 changed files with 49537 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true

View File

@@ -0,0 +1,26 @@
from setuptools import setup, find_packages
import sys, os
version = {{repr(version or "0.0")}}
setup(name={{repr(project)}},
version=version,
description="{{description or ''}}",
long_description="""\
{{long_description or ''}}""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords={{repr(keywords or '')}},
author={{repr(author or '')}},
author_email={{repr(author_email or '')}},
url={{repr(url or '')}},
license={{repr(license_name or '')}},
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe={{repr(bool(zip_safe or False))}},
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)