Skip to content

Commit

Permalink
- stricter flake8 configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Apr 13, 2019
1 parent ccdaf0a commit 004426b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 31 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
5.3 (unreleased)
----------------

- stricter flake8 configuration

- add badges and additional information links to package information

- Make sure Zope 4 ZMI shows no add dialog
Expand Down
61 changes: 30 additions & 31 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2010 Zope Foundation and Contributors.
Expand All @@ -13,19 +12,8 @@
#
##############################################################################

from setuptools import setup, find_packages

INSTALL_REQUIRES = [
'setuptools',
'AccessControl',
'Acquisition',
'transaction',
'zExceptions',
'Zope >= 4.0b9.dev0',
'zope.component',
'zope.interface',
'zope.event',
]
from setuptools import find_packages
from setuptools import setup


def read(name):
Expand All @@ -43,33 +31,44 @@ def read(name):
'Sources': 'https://github.com/zopefoundation/Products.SiteErrorLog',
},
license='ZPL 2.1',
description="Error log for Zope.",
description='Error log for Zope.',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description='\n'.join([read('README.rst'),
read('CHANGES.rst')]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Framework :: Zope :: 4",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Framework :: Zope',
'Framework :: Zope :: 4',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
],
packages=find_packages('src'),
namespace_packages=['Products'],
package_dir={'': 'src'},
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
install_requires=INSTALL_REQUIRES,
install_requires=[
'setuptools',
'AccessControl',
'Acquisition',
'transaction',
'zExceptions',
'Zope >= 4.0b9.dev0',
'zope.component',
'zope.interface',
'zope.event',
],
include_package_data=True,
zip_safe=False,
)

0 comments on commit 004426b

Please sign in to comment.