setup.py 844 B

123456789101112131415161718192021222324252627
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this file,
  3. # You can obtain one at http://mozilla.org/MPL/2.0/.
  4. from setuptools import setup
  5. PACKAGE_NAME = 'mozleak'
  6. PACKAGE_VERSION = '0.1'
  7. setup(
  8. name=PACKAGE_NAME,
  9. version=PACKAGE_VERSION,
  10. description="Library for extracting memory leaks from leak logs files",
  11. long_description="see http://mozbase.readthedocs.org/",
  12. classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
  13. keywords='mozilla',
  14. author='Mozilla Automation and Tools team',
  15. author_email='tools@lists.mozilla.org',
  16. url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
  17. license='MPL',
  18. packages=['mozleak'],
  19. zip_safe=False,
  20. install_requires=[],
  21. )