summaryrefslogtreecommitdiff
path: root/setuptools/__init__.py
blob: 172c77d635682217ab09ce78d232459d1a24cd4c (plain)
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
"""Extensions to the 'distutils' for large or complex distributions"""

import distutils.core, setuptools.command
from setuptools.dist import Distribution, Feature
from setuptools.extension import Extension
from distutils.core import Command

__all__ = [
    'setup', 'Distribution', 'Feature', 'Command', 'Extension'
]


def setup(**attrs):

    """Do package setup

    This function takes the same arguments as 'distutils.core.setup()', except
    that the default distribution class is 'setuptools.dist.Distribution'.  See
    that class' documentation for details on the new keyword arguments that it
    makes available via this function.
    """

    attrs.setdefault("distclass",Distribution)
    return distutils.core.setup(**attrs)