2012-12-30 08:38:00 +04:00
|
|
|
#!/usr/bin/env python
|
2011-07-22 05:53:13 +04:00
|
|
|
from setuptools import setup
|
2012-12-30 08:38:00 +04:00
|
|
|
try:
|
|
|
|
import multiprocessing
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2011-07-22 05:53:13 +04:00
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='django-badger',
|
|
|
|
version='0.0.1',
|
|
|
|
description='Django app for managing and awarding badgers',
|
2011-11-11 00:23:57 +04:00
|
|
|
long_description=open('README.rst').read(),
|
2011-07-22 05:53:13 +04:00
|
|
|
author='Leslie Michael Orchard',
|
|
|
|
author_email='me@lmorchard.com',
|
|
|
|
url='http://github.com/lmorchard/django-badger',
|
|
|
|
license='BSD',
|
2012-02-02 21:57:51 +04:00
|
|
|
packages=['badger', 'badger.templatetags', 'badger.management', 'badger.management.commands', 'badger.migrations'],
|
|
|
|
package_data={'badger': ['fixtures/*', 'templates/badger_playdoh/*.html', 'templates/badger_playdoh/includes/*.html', 'templates/badger_vanilla/*.html', 'templates/badger_vanilla/includes/*.html']},
|
2011-07-22 05:53:13 +04:00
|
|
|
include_package_data=True,
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
# I don't know what exactly this means, but why not?
|
|
|
|
'Framework :: Django',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2012-12-30 08:38:00 +04:00
|
|
|
],
|
|
|
|
install_requires=[
|
|
|
|
'django>=1.2',
|
|
|
|
'PIL',
|
|
|
|
],
|
|
|
|
tests_require=[
|
|
|
|
'nose',
|
|
|
|
'django-nose',
|
|
|
|
'pyquery',
|
|
|
|
'feedparser',
|
|
|
|
],
|
2013-01-02 06:00:45 +04:00
|
|
|
test_suite='manage.nose_collector',
|
2011-07-22 05:53:13 +04:00
|
|
|
)
|