svetlyak40wt / django-apps

Django application which provides an information about other installed applications.

django-apps / setup.py
100644 27 lines (24 sloc) 0.927 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
)