Created
August 15, 2012 19:06
-
-
Save binarymatt/3362648 to your computer and use it in GitHub Desktop.
broken setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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