Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 54161
Collapse All | Expand All

(-)dap-2.1.3/setup.py (-4 / +2 lines)
Lines 34-42 Link Here
34
Topic :: Software Development :: Libraries :: Python Modules
34
Topic :: Software Development :: Libraries :: Python Modules
35
"""
35
"""
36
36
37
import ez_setup
37
from distutils.core import setup
38
ez_setup.use_setuptools()
39
from setuptools import setup, find_packages
40
38
41
import dap
39
import dap
42
version = '.'.join([str(_) for _ in dap.__version__])
40
version = '.'.join([str(_) for _ in dap.__version__])
Lines 47-53 Link Here
47
setup(
45
setup(
48
    name = "dap",
46
    name = "dap",
49
    version = version,
47
    version = version,
50
    packages = find_packages(),
48
    packages = ['dap', 'dap.parsers', 'dap.plugins', 'dap.responses', 'dap.util', 'dap.wsgi'],
51
49
52
    # Scripts to run and control the server.
50
    # Scripts to run and control the server.
53
    scripts = [
51
    scripts = [

Return to bug 54161