Created
June 28, 2015 00:41
-
-
Save swans-one/f23828c0559159d6be7c to your computer and use it in GitHub Desktop.
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
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='[email protected]', | |
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