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

(-)a/setup.py (-3 / +2 lines)
Lines 29-35 Link Here
29
29
30
"""Setup module for python-gflags."""
30
"""Setup module for python-gflags."""
31
31
32
from setuptools import setup
32
from distutils.core import setup
33
33
34
setup(name='python-gflags',
34
setup(name='python-gflags',
35
      version='3.0.2',
35
      version='3.0.2',
Lines 38-44 Link Here
38
      author='Google Inc. and others',
38
      author='Google Inc. and others',
39
      author_email='google-gflags@googlegroups.com',
39
      author_email='google-gflags@googlegroups.com',
40
      url='https://github.com/google/python-gflags',
40
      url='https://github.com/google/python-gflags',
41
      py_modules=['gflags'],
41
      packages=['gflags', 'gflags.third_party', 'gflags.third_party.pep257'],
42
      scripts=['gflags2man.py'],
42
      scripts=['gflags2man.py'],
43
      include_package_data=True,
44
     )
43
     )

Return to bug 594734