public
Description: a Django-based platform for rapidly developing websites
Homepage: http://pinaxproject.com/
Clone URL: git://github.com/pinax/pinax.git
pinax / setup.py
100644 46 lines (42 sloc) 1.428 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
 
VERSION = __import__('pinax').__version__
 
def read(*path):
    return open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *path)).read()
 
setup(
    name='Pinax',
    version=VERSION,
    description='Pinax is an open-source collection of re-usable apps for the Django Web Framework',
    long_description=read('docs', 'intro.txt'),
    author='James Tauber',
    author_email='jtauber@jtauber.com',
    maintainer='Jannis Leidel',
    maintainer_email='jannis@leidel.info',
    url='http://pinaxproject.com/',
    packages=find_packages(),
    include_package_data=True,
    # Ignore the tarballs we built our own in a source distribution
    exclude_package_data={
        'requirements': ['%s/*.tar.gz' % VERSION],
    },
    zip_safe=False,
    setup_requires=[
        'setuptools_dummy',
    ],
    entry_points={
        'console_scripts': [
            'pinax-admin = pinax.core.management:execute_from_command_line',
        ],
    },
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Framework :: Django',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.4',
        'Programming Language :: JavaScript',
    ],
)