mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 18:46:52 +00:00
23 lines
661 B
Python
Executable file
23 lines
661 B
Python
Executable file
from distutils.core import setup
|
|
|
|
README = open('README').read()
|
|
|
|
setup(
|
|
name="flake8",
|
|
license="MIT",
|
|
version="0.9",
|
|
description="code checking using pep8 and pyflakes",
|
|
author="Tarek Ziade",
|
|
author_email="tarek@ziade.org",
|
|
url="http://bitbucket.org/tarek/flake8",
|
|
packages=["flake8", "flake8.tests"],
|
|
scripts=["bin/flake8"],
|
|
long_description=README,
|
|
classifiers=[
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python",
|
|
"Topic :: Software Development",
|
|
"Topic :: Utilities",
|
|
])
|