diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 223bfabd..00000000 --- a/setup.cfg +++ /dev/null @@ -1,23 +0,0 @@ -[wheel] -universal = 1 - -[flake8] -ignore = - # E203: Whitespace before ':'; doesn't work with black - E203, - # E501: line too long - E501, - # W503: line break before operator; this doesn't work with black - W503, - # D100: Missing docstring in public module (pydocstyle) - D100, - # D104: Missing docstring in public package (pydocstyle) - D104, - # D107: Missing docstring in __init__ (pydocstyle) - D107 -exclude = docs -max-line-length = 88 - -[doc8] -max-line-length = 88 -ignore-path = docs/_build/ diff --git a/setup.py b/setup.py deleted file mode 100755 index c9b215a5..00000000 --- a/setup.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env python - -# 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 https://mozilla.org/MPL/2.0/. - - -from setuptools import setup - - -def get_file(fn): - with open(fn) as fp: - return fp.read() - - -setup( - name='antenna', - version='0.1.0', - description='Breakpad crash report collector', - long_description=get_file('README.rst'), - author='Socorro Team', - author_email='socorro-dev@mozilla.com', - url='https://github.com/mozilla-services/antenna', - packages=[ - 'antenna', - ], - package_dir={ - 'antenna': 'antenna' - }, - include_package_data=True, - license='MPLv2', - zip_safe=False, - keywords='breakpad crash', - classifiers=[ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', - 'Natural Language :: English', - "Programming Language :: Python :: 3", - 'Programming Language :: Python :: 3.5', - ], -)