Skip to content

Commit

Permalink
[cleanup] Reformat setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Jan 3, 2018
1 parent e967546 commit 923722d
Showing 1 changed file with 55 additions and 49 deletions.
104 changes: 55 additions & 49 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,52 +10,58 @@
open('CHANGES.rst').read(),
])

setup(name='z3c.dependencychecker',
version=version,
description="""Checks which imports are done and compares them to what's
in setup.py and warns when discovering missing or unneeded
dependencies.""",
long_description=long_description,
# Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Quality Assurance',
],
keywords=[
'dependencies',
'requirements',
'missing',
'imports',
],
author='Reinout van Rees',
author_email='reinout@vanrees.org',
url='https://github.com/reinout/z3c.dependencychecker',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['z3c'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'stdlib-list',
],
extras_require = {
'test': [
'pytest',
'mock',
],
},
entry_points={
'console_scripts':
['dependencychecker = z3c.dependencychecker.main:main'
]},
)
description = """
Checks which imports are done and compares them to what's
in setup.py and warns when discovering missing or unneeded
dependencies.
"""

setup(
name='z3c.dependencychecker',
version=version,
description=description,
long_description=long_description,
# Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Quality Assurance',
],
keywords=[
'dependencies',
'requirements',
'missing',
'imports',
],
author='Reinout van Rees',
author_email='reinout@vanrees.org',
url='https://github.com/reinout/z3c.dependencychecker',
license='BSD',
packages=find_packages(exclude=['ez_setup', ]),
namespace_packages=['z3c', ],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'stdlib-list',
],
extras_require={
'test': [
'pytest',
'mock',
],
},
entry_points={
'console_scripts': [
'dependencychecker = z3c.dependencychecker.main:main',
]
},
)

0 comments on commit 923722d

Please sign in to comment.