from setuptools import setup, find_packages
setup(
name = 'django-apps',
version = __import__('django_apps').__version__,
description = 'Django application which provides an information about installed applications.',
keywords = 'django apps',
license = 'New BSD License',
author = 'Alexander Artemenko',
author_email = 'svetlyak.40wt@gmail.com',
url = 'http://github.com/svetlyak40wt/django-apps/',
install_requires = [],
dependency_links = ['http://pypi.aartemenko.com'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = find_packages(),
include_package_data = True,
)