Skip to content

Commit

Permalink
make it a proper package
Browse files Browse the repository at this point in the history
  • Loading branch information
Whit Morriss committed Oct 7, 2010
1 parent ce91c02 commit 4d87673
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
@@ -0,0 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true
26 changes: 26 additions & 0 deletions setup.py
@@ -0,0 +1,26 @@
from setuptools import setup, find_packages
import sys, os

version = '0.1'

setup(name='cheese_emporium',
version=version,
description="PyPi clone",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='Distribution, pip',
author='Matt George',
author_email='matt.george@gmail.com',
url='',
license='BSD',
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 4d87673

Please sign in to comment.