Skip to content

Instantly share code, notes, and snippets.

@swans-one
Created June 28, 2015 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swans-one/f23828c0559159d6be7c to your computer and use it in GitHub Desktop.
Save swans-one/f23828c0559159d6be7c to your computer and use it in GitHub Desktop.
from setuptools import setup, find_packages
setup(
name='django_cute_kittens',
version='0.1.1',
description='Add django kittens to your website',
long_description=open('README.rst').read(),
url='https://github.com/Wilduck/django-cute-kittens',
author='Erik Swanson',
author_email='theerikswanson@gmail.com',
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django :: 1.8',
],
license='MIT',
install_requires=[
'django>=1.8',
],
tests_require=[
'psycopg2',
'django-nose',
'mock>=1.0.1',
],
test_suite='run_tests.run_tests',
include_package_data=True,
zip_safe=False,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment