diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-08-09 13:17:26 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-09-02 09:34:01 -0400 |
commit | e38df50bbf2d8c33aa53ce8ce1fc2b84e9b22814 (patch) | |
tree | bd4c83e8e6f185bcaa5665e25084967f854ce99b /python/mozlog/setup.py | |
parent | 759c52d7eb62f69f31258927558eb5cb985ef47c (diff) | |
download | servo-e38df50bbf2d8c33aa53ce8ce1fc2b84e9b22814.tar.gz servo-e38df50bbf2d8c33aa53ce8ce1fc2b84e9b22814.zip |
Revert "Revert "Auto merge of #7103 - frewsxcv:python-venv, r=metajack" for breaking web-platform-tests."
This reverts commit 47d6d958f58f5011742a18abcdd5a76bf4390966.
Diffstat (limited to 'python/mozlog/setup.py')
-rw-r--r-- | python/mozlog/setup.py | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/python/mozlog/setup.py b/python/mozlog/setup.py deleted file mode 100644 index 00a81559c28..00000000000 --- a/python/mozlog/setup.py +++ /dev/null @@ -1,36 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this file, -# You can obtain one at http://mozilla.org/MPL/2.0/. - -from setuptools import setup, find_packages - -PACKAGE_NAME = 'mozlog' -PACKAGE_VERSION = '2.10' - -setup(name=PACKAGE_NAME, - version=PACKAGE_VERSION, - description="Robust log handling specialized for logging in the Mozilla universe", - long_description="see http://mozbase.readthedocs.org/", - author='Mozilla Automation and Testing Team', - author_email='tools@lists.mozilla.org', - url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase', - license='MPL 1.1/GPL 2.0/LGPL 2.1', - packages=find_packages(), - zip_safe=False, - install_requires=["blessings>=1.3"], - tests_require=['mozfile'], - platforms =['Any'], - classifiers=['Development Status :: 4 - Beta', - 'Environment :: Console', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)', - 'Operating System :: OS Independent', - 'Topic :: Software Development :: Libraries :: Python Modules', - ], - package_data={"mozlog.structured": ["formatters/html/main.js", - "formatters/html/style.css"]}, - entry_points={ - "console_scripts": [ - "structlog = mozlog.structured.scripts:main" - ]} - ) |