Skip to content

Instantly share code, notes, and snippets.

@binarymatt
Created August 15, 2012 19:06
Show Gist options
  • Save binarymatt/3362648 to your computer and use it in GitHub Desktop.
Save binarymatt/3362648 to your computer and use it in GitHub Desktop.
broken setup.py
import os
from setuptools import setup, find_packages
version=__import__('django_pyres').__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-pyres',
version=version,
description='django pyres integration',
long_description=read('README.md'),
author='Matt George',
author_email='[email protected]',
maintainer='Matt George',
license='MIT',
url='http://github.com/Pyres/django_pyres',
packages=find_packages(exclude=['ez_setup', 'example','testapp','tests']),
package_data={'': ['README.md']},
include_package_data=True,
install_requires=[
'pyres>=1.4.1',
'django-appconf>=0.5'
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment