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 |
) |